| Commit message (Expand) | Author | Age | Files | Lines |
* | Issue #20791: copy.copy() now doesn't make a copy when the input is a bytes o... | Antoine Pitrou | 2014-02-27 | 1 | -1/+1 |
* | Issue #11480: Fixed copy.copy to work with classes with custom metaclasses. | Alexandre Vassalotti | 2013-12-01 | 1 | -0/+8 |
* | #11572: improvements to copy module tests along with removal of old test suite | Sandro Tosi | 2011-08-05 | 1 | -65/+0 |
* | don't memoize objects that are their own copies (closes #12422) | Benjamin Peterson | 2011-06-27 | 1 | -5/+7 |
* | Fix running the copy module from the command-line (however use{ful,less} it m... | Antoine Pitrou | 2010-09-04 | 1 | -1/+2 |
* | Issue #1100562: Fix deep-copying of objects derived from the list and dict ty... | Antoine Pitrou | 2010-09-04 | 1 | -11/+23 |
* | Merged revisions 76571 via svnmerge from | Antoine Pitrou | 2009-11-28 | 1 | -0/+4 |
* | Merged revisions 72669 via svnmerge from | Antoine Pitrou | 2009-05-15 | 1 | -1/+3 |
* | Rename the repr module to reprlib. | Alexandre Vassalotti | 2008-05-16 | 1 | -10/+9 |
* | Rename copy_reg module to copyreg. | Alexandre Vassalotti | 2008-05-11 | 1 | -1/+1 |
* | Merged revisions 61834,61841-61842,61851-61853,61863-61864,61869-61870,61874,... | Christian Heimes | 2008-03-25 | 1 | -1/+2 |
* | Merging the py3k-pep3137 branch back into the py3k branch. | Guido van Rossum | 2007-11-06 | 1 | -1/+1 |
* | Merged revisions 55795-55816 via svnmerge from | Guido van Rossum | 2007-06-07 | 1 | -4/+6 |
* | Register a dispatcher for str8. (This makes test_copy.py pass again.) | Walter Dörwald | 2007-06-07 | 1 | -4/+1 |
* | Merged revisions 55007-55179 via svnmerge from | Guido van Rossum | 2007-05-07 | 1 | -2/+2 |
* | Rip out all the u"..." literals and calls to unicode(). | Guido van Rossum | 2007-05-02 | 1 | -1/+1 |
* | Remove duplicate refs to int from int/long unification presumably. (There mi... | Neal Norwitz | 2007-02-27 | 1 | -2/+1 |
* | - PEP 3106: dict.iterkeys(), .iteritems(), .itervalues() are now gone; | Guido van Rossum | 2007-02-11 | 1 | -3/+3 |
* | Fix most trivially-findable print statements. | Guido van Rossum | 2007-02-09 | 1 | -17/+17 |
* | Rip out 'long' and 'L'-suffixed integer literals. | Guido van Rossum | 2007-01-15 | 1 | -3/+3 |
* | SF patch 1495675: Remove types.InstanceType and new.instance | Guido van Rossum | 2006-05-26 | 1 | -43/+0 |
* | Whitespace normalization. | Tim Peters | 2006-02-26 | 1 | -1/+1 |
* | - Patch 1433928: | Guido van Rossum | 2006-02-25 | 1 | -1/+3 |
* | SF bug #1219361 Fix typo | Raymond Hettinger | 2005-06-13 | 1 | -1/+1 |
* | Build with --disable-unicode again. Fixes #1158607. | Martin v. Löwis | 2005-03-08 | 1 | -2/+2 |
* | Reduce the usage of the types module. | Raymond Hettinger | 2005-02-07 | 1 | -14/+14 |
* | Refactor the copy dispatcher code in copy.py. Simplifies and shortens | Raymond Hettinger | 2004-03-08 | 1 | -35/+17 |
* | Copy builtin functions as atomic. Fixes #746304. Will backport to 2.2. | Martin v. Löwis | 2003-06-14 | 1 | -0/+2 |
* | SF patch 707900, fixing bug 702858, by Steven Taschuk. | Guido van Rossum | 2003-06-13 | 1 | -0/+1 |
* | Get rid of many apply() calls. | Guido van Rossum | 2003-02-27 | 1 | -2/+2 |
* | Whitespace normalization. | Tim Peters | 2003-02-19 | 1 | -1/+1 |
* | Remove now unused _better_reduce. | Guido van Rossum | 2003-02-19 | 1 | -1/+1 |
* | Use __reduce_ex__ in copy.py. The test_*copy_cant() tests are simpler again. | Guido van Rossum | 2003-02-19 | 1 | -22/+34 |
* | Somehow, copy() of a classic class object was handled | Guido van Rossum | 2003-02-07 | 1 | -0/+1 |
* | Add support for copy_reg.dispatch_table. | Guido van Rossum | 2003-02-07 | 1 | -48/+50 |
* | Move _better_reduce from copy.py to copy_reg.py, and also use it in | Guido van Rossum | 2003-02-06 | 1 | -41/+1 |
* | Fix a bug in the way __getnewargs__ was handled. | Guido van Rossum | 2003-02-06 | 1 | -1/+1 |
* | Support all the new stuff supported by the new pickle code: | Guido van Rossum | 2003-02-06 | 1 | -11/+64 |
* | Support __reduce__ returning a 4-tuple or 5-tuple. | Guido van Rossum | 2003-02-06 | 1 | -1/+20 |
* | Support copying booleans. Fixes #668925. | Martin v. Löwis | 2003-01-16 | 1 | -0/+2 |
* | Make sure that *any* object whose id() is used as a memo key is kept | Guido van Rossum | 2002-08-12 | 1 | -2/+1 |
* | SF patch 560794 (Greg Chapman): deepcopy can't handle custom | Guido van Rossum | 2002-06-10 | 1 | -8/+15 |
* | Fix from SF patch 565085: copy._reduction doesn't __setstate__. | Guido van Rossum | 2002-06-06 | 1 | -1/+4 |
* | Replaced .keys() with dictionary iterators | Raymond Hettinger | 2002-06-02 | 1 | -4/+4 |
* | SF 563203. Replaced 'has_key()' with 'in'. | Raymond Hettinger | 2002-06-01 | 1 | -1/+1 |
* | SF patch 518765 (Derek Harland): Bug in copy.py when used through | Guido van Rossum | 2002-02-28 | 1 | -1/+4 |
* | Fix for SF bug ##497426: can't deepcopy recursive new objects | Guido van Rossum | 2001-12-28 | 1 | -4/+6 |
* | Add complex to the dispatch tables, to avoid going through the whole | Guido van Rossum | 2001-09-28 | 1 | -0/+8 |
* | Changes to copy() and deepcopy() in copy.py to support __reduce__ as a | Guido van Rossum | 2001-09-28 | 1 | -7/+39 |
* | Patch #445762: Support --disable-unicode | Martin v. Löwis | 2001-08-17 | 1 | -2/+8 |