summaryrefslogtreecommitdiff
path: root/Lib/test/test_copy.py
Commit message (Expand)AuthorAgeFilesLines
* Issue #26167: Minimized overhead in copy.copy() and copy.deepcopy().Serhiy Storchaka2016-03-061-6/+49
* Issue #26202: copy.deepcopy() now correctly copies range() objects withSerhiy Storchaka2016-01-281-1/+12
* Issue #25718: Fixed copying object with state with boolean value is false.Serhiy Storchaka2015-11-301-0/+9
|\
| * Issue #25718: Fixed copying object with state with boolean value is false.Serhiy Storchaka2015-11-301-0/+9
* | Issue #19235: Add new RecursionError exception. Patch by Georg Brandl.Yury Selivanov2015-07-031-3/+3
* | Issue #21741: Update 147 test modules to use test discovery.Zachary Ware2015-04-131-5/+1
* | Issue #20289: The copy module now uses pickle protocol 4 (PEP 3154) andSerhiy Storchaka2015-03-241-0/+70
|/
* Issue #20791: copy.copy() now doesn't make a copy when the input is a bytes o...Antoine Pitrou2014-02-271-0/+1
* Issue #11480: Fixed copy.copy to work with classes with custom metaclasses.Alexandre Vassalotti2013-12-011-1/+4
* #11572: improvements to copy module tests along with removal of old test suiteSandro Tosi2011-08-051-73/+95
* don't memoize objects that are their own copies (closes #12422)Benjamin Peterson2011-06-271-2/+17
* Issue #1100562: Fix deep-copying of objects derived from the list and dict ty...Antoine Pitrou2010-09-041-0/+20
* use assert[Not]In where appropriateEzio Melotti2010-01-231-1/+1
* Merged revisions 76571 via svnmerge fromAntoine Pitrou2009-11-281-0/+11
* convert old fail* assertions to assert*Benjamin Peterson2009-06-301-62/+62
* Merged revisions 72669 via svnmerge fromAntoine Pitrou2009-05-151-0/+88
* Issue #1717: Remove cmp. Stage 1: remove all uses of cmp and __cmp__ fromMark Dickinson2009-01-271-4/+13
* #2621 rename test.test_support to test.supportBenjamin Peterson2008-05-201-4/+4
* Rename copy_reg module to copyreg.Alexandre Vassalotti2008-05-111-3/+3
* Merged revisions 60990-61002 via svnmerge fromChristian Heimes2008-02-231-1/+0
* Raise statement normalization in Lib/test/.Collin Winter2007-08-291-5/+5
* 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-2/+2
* Implement PEP 3115 -- new metaclass syntax and semantics.Guido van Rossum2007-03-181-2/+2
* Change all the function attributes from func_* -> __*__. This gets ridNeal Norwitz2007-02-251-2/+2
* - PEP 3106: dict.iterkeys(), .iteritems(), .itervalues() are now gone;Guido van Rossum2007-02-111-1/+1
* Rip out 'long' and 'L'-suffixed integer literals.Guido van Rossum2007-01-151-2/+2
* Restructure comparison dramatically. There is no longer a defaultGuido van Rossum2006-08-241-35/+35
* - Patch 1433928:Guido van Rossum2006-02-251-0/+16
* Replace backticks with repr() or "%r"Walter Dörwald2004-02-121-2/+2
* Deleting cyclic object comparison.Armin Rigo2003-10-281-6/+6
* Copy builtin functions as atomic. Fixes #746304. Will backport to 2.2.Martin v. Löwis2003-06-141-2/+2
* SF patch 707900, fixing bug 702858, by Steven Taschuk.Guido van Rossum2003-06-131-2/+49
* Fix SF #749831, copy raises SystemError when getstate raises exceptionNeal Norwitz2003-06-081-0/+6
* Combine the functionality of test_support.run_unittest()Walter Dörwald2003-05-011-3/+1
* Use __reduce_ex__ in copy.py. The test_*copy_cant() tests are simpler again.Guido van Rossum2003-02-191-8/+24
* Somehow, copy() of a classic class object was handledGuido van Rossum2003-02-071-1/+1
* Add support for copy_reg.dispatch_table.Guido van Rossum2003-02-071-0/+27
* Fix a bug in the way __getnewargs__ was handled.Guido van Rossum2003-02-061-0/+18
* Support all the new stuff supported by the new pickle code:Guido van Rossum2003-02-061-2/+45
* Support __reduce__ returning a 4-tuple or 5-tuple.Guido van Rossum2003-02-061-0/+36
* A test suite for the copy module. This should provide full codeGuido van Rossum2003-02-061-0/+384