summaryrefslogtreecommitdiff
path: root/Lib/copy.py
Commit message (Expand)AuthorAgeFilesLines
* Issue #25718: Fixed copying object with state with boolean value is false.Serhiy Storchaka2015-11-301-2/+2
* Merged revisions 84495-84496 via svnmerge fromAntoine Pitrou2010-09-041-11/+23
* Issue #1515: Enable use of deepcopy() with instance methods. Patch by Robert...Antoine Pitrou2009-11-281-0/+4
* Issue #2116: Weak references and weak dictionaries now support copy()ing and ...Antoine Pitrou2009-05-151-1/+3
* Revert the renaming of repr to reprlib.Brett Cannon2008-05-231-9/+10
* Revert copy_reg -> copyreg rename.Georg Brandl2008-05-201-1/+1
* Changed references to the reprlib module to use its new name.Alexandre Vassalotti2008-05-161-10/+9
* Added module stub for copy_reg renaming in 3.0.Alexandre Vassalotti2008-05-111-1/+1
* Issue 2460: Make Ellipsis objects copyable.Raymond Hettinger2008-03-241-1/+2
* 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
* SF 563203. Replaced 'has_key()' with 'in'.Raymond Hettinger2002-06-011-1/+1
* SF patch 518765 (Derek Harland): Bug in copy.py when used throughGuido van Rossum2002-02-281-1/+4
* Fix for SF bug ##497426: can't deepcopy recursive new objectsGuido van Rossum2001-12-281-4/+6
* Add complex to the dispatch tables, to avoid going through the wholeGuido van Rossum2001-09-281-0/+8
* Changes to copy() and deepcopy() in copy.py to support __reduce__ as aGuido van Rossum2001-09-281-7/+39
* Patch #445762: Support --disable-unicodeMartin v. Löwis2001-08-171-2/+8
* added __all__ lists to a number of Python modulesSkip Montanaro2001-01-201-0/+2
* Whitespace normalization.Tim Peters2001-01-141-183/+183
* Patch by Finn Bock to support PyStringMap in Jython.Guido van Rossum2000-11-271-0/+9
* Added Unicode objects to the copy mechanism. Since these are immutable,Marc-André Lemburg2000-09-071-0/+2
* Convert some old-style string exceptions to class exceptions.Fred Drake2000-08-171-2/+3
* Actually, the previous batch's comment should have been different;Guido van Rossum2000-02-041-3/+1
* Don't die if CodeType doesn't exist -- ignore the error. This couldGuido van Rossum1999-01-251-1/+4
* A few lines were indented using spaces instead of tabs -- fix them.Guido van Rossum1998-03-261-14/+14
* As Mike Fletcher pointed out, a __deepcopy__() method should be calledGuido van Rossum1998-03-131-1/+1
* Apply the same change to classes without an __getinitargs__() methodGuido van Rossum1997-12-071-5/+11
* Use __dict__.update(state) instead of for loop over state.items() andGuido van Rossum1997-10-261-11/+9
* Add XXX note about wanting support for copy_reg.py...Guido van Rossum1997-10-071-0/+2