summaryrefslogtreecommitdiff
path: root/Lib/copy.py
Commit message (Expand)AuthorAgeFilesLines
* Issue #26167: Minimized overhead in copy.copy() and copy.deepcopy().Serhiy Storchaka2016-03-061-66/+49
* Issue #26202: copy.deepcopy() now correctly copies range() objects withSerhiy Storchaka2016-01-281-1/+0
* Issue #25718: Fixed copying object with state with boolean value is false.Serhiy Storchaka2015-11-301-2/+2
|\
| * Issue #25718: Fixed copying object with state with boolean value is false.Serhiy Storchaka2015-11-301-2/+2
* | Issue #20289: The copy module now uses pickle protocol 4 (PEP 3154) andSerhiy Storchaka2015-03-241-2/+2
* | improve idioms (closes #20642)Benjamin Peterson2014-05-031-5/+3
|/
* Issue #20791: copy.copy() now doesn't make a copy when the input is a bytes o...Antoine Pitrou2014-02-271-1/+1
* Issue #11480: Fixed copy.copy to work with classes with custom metaclasses.Alexandre Vassalotti2013-12-011-0/+8
* #11572: improvements to copy module tests along with removal of old test suiteSandro Tosi2011-08-051-65/+0
* don't memoize objects that are their own copies (closes #12422)Benjamin Peterson2011-06-271-5/+7
* Fix running the copy module from the command-line (however use{ful,less} it m...Antoine Pitrou2010-09-041-1/+2
* Issue #1100562: Fix deep-copying of objects derived from the list and dict ty...Antoine Pitrou2010-09-041-11/+23
* Merged revisions 76571 via svnmerge fromAntoine Pitrou2009-11-281-0/+4
* Merged revisions 72669 via svnmerge fromAntoine Pitrou2009-05-151-1/+3
* Rename the repr module to reprlib.Alexandre Vassalotti2008-05-161-10/+9
* Rename copy_reg module to copyreg.Alexandre Vassalotti2008-05-111-1/+1
* Merged revisions 61834,61841-61842,61851-61853,61863-61864,61869-61870,61874,...Christian Heimes2008-03-251-1/+2
* Merging the py3k-pep3137 branch back into the py3k branch.Guido van Rossum2007-11-061-1/+1
* Merged revisions 55795-55816 via svnmerge fromGuido van Rossum2007-06-071-4/+6
* Register a dispatcher for str8. (This makes test_copy.py pass again.)Walter Dörwald2007-06-071-4/+1
* Merged revisions 55007-55179 via svnmerge fromGuido van Rossum2007-05-071-2/+2
* Rip out all the u"..." literals and calls to unicode().Guido van Rossum2007-05-021-1/+1
* Remove duplicate refs to int from int/long unification presumably. (There mi...Neal Norwitz2007-02-271-2/+1
* - PEP 3106: dict.iterkeys(), .iteritems(), .itervalues() are now gone;Guido van Rossum2007-02-111-3/+3
* Fix most trivially-findable print statements.Guido van Rossum2007-02-091-17/+17
* Rip out 'long' and 'L'-suffixed integer literals.Guido van Rossum2007-01-151-3/+3
* SF patch 1495675: Remove types.InstanceType and new.instanceGuido van Rossum2006-05-261-43/+0
* Whitespace normalization.Tim Peters2006-02-261-1/+1
* - Patch 1433928:Guido van Rossum2006-02-251-1/+3
* SF bug #1219361 Fix typoRaymond Hettinger2005-06-131-1/+1
* Build with --disable-unicode again. Fixes #1158607.Martin v. Löwis2005-03-081-2/+2
* Reduce the usage of the types module.Raymond Hettinger2005-02-071-14/+14
* Refactor the copy dispatcher code in copy.py. Simplifies and shortensRaymond Hettinger2004-03-081-35/+17
* Copy builtin functions as atomic. Fixes #746304. Will backport to 2.2.Martin v. Löwis2003-06-141-0/+2
* SF patch 707900, fixing bug 702858, by Steven Taschuk.Guido van Rossum2003-06-131-0/+1
* Get rid of many apply() calls.Guido van Rossum2003-02-271-2/+2
* Whitespace normalization.Tim Peters2003-02-191-1/+1
* Remove now unused _better_reduce.Guido van Rossum2003-02-191-1/+1
* Use __reduce_ex__ in copy.py. The test_*copy_cant() tests are simpler again.Guido van Rossum2003-02-191-22/+34
* Somehow, copy() of a classic class object was handledGuido van Rossum2003-02-071-0/+1
* Add support for copy_reg.dispatch_table.Guido van Rossum2003-02-071-48/+50
* Move _better_reduce from copy.py to copy_reg.py, and also use it inGuido van Rossum2003-02-061-41/+1
* Fix a bug in the way __getnewargs__ was handled.Guido van Rossum2003-02-061-1/+1
* Support all the new stuff supported by the new pickle code:Guido van Rossum2003-02-061-11/+64
* Support __reduce__ returning a 4-tuple or 5-tuple.Guido van Rossum2003-02-061-1/+20
* Support copying booleans. Fixes #668925.Martin v. Löwis2003-01-161-0/+2
* Make sure that *any* object whose id() is used as a memo key is keptGuido van Rossum2002-08-121-2/+1
* SF patch 560794 (Greg Chapman): deepcopy can't handle customGuido van Rossum2002-06-101-8/+15
* Fix from SF patch 565085: copy._reduction doesn't __setstate__.Guido van Rossum2002-06-061-1/+4
* Replaced .keys() with dictionary iteratorsRaymond Hettinger2002-06-021-4/+4