- 23 Şub, 2008 1 kayıt (commit)
-
-
Christian Heimes yazdı
-
- 25 Şub, 2006 1 kayıt (commit)
-
-
Guido van Rossum yazdı
- The copy module now "copies" function objects (as atomic objects). - dict.__getitem__ now looks for a __missing__ hook before raising KeyError. - Added a new type, defaultdict, to the collections module. This uses the new __missing__ hook behavior added to dict (see above).
-
- 12 Şub, 2004 1 kayıt (commit)
-
-
Walter Dörwald yazdı
From SF patch #852334.
-
- 28 Eki, 2003 1 kayıt (commit)
-
-
Armin Rigo yazdı
SF patch 825639 http://mail.python.org/pipermail/python-dev/2003-October/039445.html
-
- 14 Haz, 2003 1 kayıt (commit)
-
-
Martin v. Löwis yazdı
-
- 13 Haz, 2003 1 kayıt (commit)
-
-
Guido van Rossum yazdı
Copying a new-style class that had a reference to itself didn't work. (The same thing worked fine for old-style classes.)
-
- 08 Haz, 2003 1 kayıt (commit)
-
-
Neal Norwitz yazdı
-
- 01 May, 2003 1 kayıt (commit)
-
-
Walter Dörwald yazdı
and test_support.run_classtests() into run_unittest() and use it wherever possible. Also don't use "from test.test_support import ...", but "from test import test_support" in a few spots. From SF patch #662807.
-
- 19 Şub, 2003 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 07 Şub, 2003 2 kayıt (commit)
-
-
Guido van Rossum yazdı
atomically, but deepcopy() didn't support this at all. I don't see any reason for this, so I'm adding ClassType to the set of types that are deep-copied atomically.
-
Guido van Rossum yazdı
Rewrote copy() and deepcopy() without avoidable try/except statements; getattr(x, name, None) or dict.get() are much faster than try/except.
-
- 06 Şub, 2003 4 kayıt (commit)
-
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
- subclasses of list or dict - __reduce__ returning a 4-tuple or 5-tuple - slots
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
coverage.
-