summaryrefslogtreecommitdiff
path: root/Lib/UserDict.py
Commit message (Expand)AuthorAgeFilesLines
* Issue #22609: Constructor and the update method of collections.UserDict nowSerhiy Storchaka2015-09-291-2/+35
* keep UserDict an old-style classBenjamin Peterson2010-06-221-1/+1
* No need to assign the results of expressions used only for side effects.Georg Brandl2010-02-061-1/+1
* avoid a py3k warning from __hash__Benjamin Peterson2010-01-281-0/+1
* for UserDict to be compatible with abcs, it must subclass objectBenjamin Peterson2010-01-271-1/+1
* Register IterableUserDict as a MutableMapping.Georg Brandl2008-06-071-0/+4
* Update more instances of has_key().Raymond Hettinger2008-02-211-2/+2
* Removed uses of dict.has_key() from distutils, and uses ofGuido van Rossum2008-02-211-1/+1
* - Patch 1433928:Guido van Rossum2006-02-251-1/+6
* Use decorators.Guido van Rossum2005-01-161-1/+1
* The default argument in dict.setdefault() defaults to None.Walter Dörwald2004-05-271-1/+1
* SF #904720: dict.update should take a 2-tuple sequence like dict.__init_Raymond Hettinger2004-03-041-11/+17
* Make sure the UserDict copies do not share the same underlyingRaymond Hettinger2003-12-211-1/+1
* SF bug #849662. Dramatically, improve comparison speed for "if shl == None".Raymond Hettinger2003-12-041-0/+2
* SF patch #693753: fix for bug 639806: default for dict.popRaymond Hettinger2003-03-061-4/+12
* typo in commentBarry Warsaw2003-01-311-1/+1
* SF patch #667730: More DictMixinRaymond Hettinger2003-01-221-2/+4
* Bring UserDict in-sync with changes to dict.Raymond Hettinger2002-11-271-6/+12
* Implement dict() style constructor.Raymond Hettinger2002-11-221-3/+8
* Improve DictMixin.Raymond Hettinger2002-11-181-23/+38
* SF patch #520382: Expand shelve.py to have a full dictionary interfaceRaymond Hettinger2002-11-151-0/+64
* Add pop() to UserDict.Guido van Rossum2002-04-131-0/+2
* copy(): Make sure the copy of a derived class cannot share the data of theFred Drake2001-11-051-1/+8
* Remove the __iter__ method from the UserDict class -- it can silentlyGuido van Rossum2001-08-071-0/+2
* Patch #413171: Implement get, setdefault, update in terms ofMartin v. Löwis2001-06-181-5/+7
* Added support for .iteritems(), .iterkeys(), .itervalues().Fred Drake2001-05-031-0/+3
* Give UserDict new __contains__ and __iter__ methods.Tim Peters2001-04-211-0/+4
* removed __all__ from several modulesSkip Montanaro2001-02-181-2/+0
* added __all__ lists to a number of Python modulesSkip Montanaro2001-01-201-0/+2
* Add popitem().Guido van Rossum2000-12-121-0/+2
* Barry's patch to implement the new setdefault() method.Guido van Rossum2000-08-081-0/+4
* Mass patch by Ka-Ping Yee:Guido van Rossum2000-02-021-1/+1
* Improved a bunch of things.Guido van Rossum1999-03-261-13/+16
* Mass check-in after untabifying all files that need it.Guido van Rossum1998-03-261-15/+15
* UserDict.get(): New method to mirror built-in dictionaries' get()Barry Warsaw1997-10-061-0/+5
* Fix bug in copy() by using copy.copy() instead of making assumptionsGuido van Rossum1997-06-031-31/+25
* Added the new dictionary methods to the wrapper class.Fred Drake1997-06-031-0/+16
* * test_*.py: new lambda syntax (also affects tests for filter, map,Guido van Rossum1993-11-301-0/+18