diff options
author | Raymond Hettinger <python@rcn.com> | 2003-09-12 06:33:37 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2003-09-12 06:33:37 (GMT) |
commit | deadbf50e4cc3c541e706d5bf1aa73624bed36a6 (patch) | |
tree | 407b9e5f2aa93866cdda5fb5b70fee3d49d2de0e /Misc | |
parent | 74c8e55f3b64b8819a1950be4ac1323c74931cc2 (diff) | |
download | cpython-deadbf50e4cc3c541e706d5bf1aa73624bed36a6.zip cpython-deadbf50e4cc3c541e706d5bf1aa73624bed36a6.tar.gz cpython-deadbf50e4cc3c541e706d5bf1aa73624bed36a6.tar.bz2 |
SF #662923
Add support for the iterator and mapping protocols.
For Py2.3, this was done for shelve, dumbdbm and other mapping objects, but
not for bsddb and dbhash which were inadvertently missed.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -35,6 +35,10 @@ Extension modules Library ------- +- The bsddb module and dbhash module now support the iterator and + mapping protocols which make them more substitutable for dictionaries + and shelves. + - The csv module's DictReader and DictWriter classes now accept keyword arguments. This was an omission in the initial implementation. |