summaryrefslogtreecommitdiff
path: root/Lib/copy.py
Commit message (Expand)AuthorAgeFilesLines
...
* 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
* Make sure the objects returned by __getinitargs__() are kept alive (inGuido van Rossum1997-08-201-0/+18
* Remove '(' in column 0 of doc strings.Guido van Rossum1997-05-281-10/+12
* Memoize _deepcopy_tuple() -- maybe this helps Tommy's problem.Guido van Rossum1996-06-171-2/+6
* fix bogus hasttr usageGuido van Rossum1995-03-221-2/+2
* rename copy.Error to copy.errorGuido van Rossum1995-03-141-5/+8
* added __doc__ strings etc.Guido van Rossum1995-02-091-34/+64
* shallow and deep copy operationsGuido van Rossum1995-01-101-0/+240