Changeset 15:65da029f888b in livinglogic.python.orasql
- Timestamp:
- 12/13/04 18:28:08 (15 years ago)
- Author:
- Walter Doerwald <walter@…>
- Branch:
- default
- Message:
-
Fix and enhance docstring.
- Files:
-
Legend:
- Unmodified
- Added
- Removed
-
r13
|
r15
|
|
122 | 122 | """ |
123 | 123 | A <class>Record</class> is a subclass of <class>dict</class> that is used |
124 | | for storing result of database query. Both item and attribute access (i.e. |
| 124 | for storing results of database queries. Both item and attribute access (i.e. |
125 | 125 | <method>__getitem__</method> and <method>__getattr__</method>) are available. |
126 | | Field names are handled case insensitively. |
| 126 | Field names are case insensitive. |
127 | 127 | """ |
128 | 128 | def __getitem__(self, name): |