1. 818e18d Issue #26167: Minimized overhead in copy.copy() and copy.deepcopy(). by Serhiy Storchaka · 8 years ago
  2. 0a20bbf Issue #26202: copy.deepcopy() now correctly copies range() objects with by Serhiy Storchaka · 8 years ago
  3. b63015b Issue #25718: Fixed copying object with state with boolean value is false. by Serhiy Storchaka · 8 years ago
  4. cbbec1c Issue #25718: Fixed copying object with state with boolean value is false. by Serhiy Storchaka · 8 years ago
  5. 32af754 Issue #20289: The copy module now uses pickle protocol 4 (PEP 3154) and by Serhiy Storchaka · 9 years ago
  6. 4ce5f3f improve idioms (closes #20642) by Benjamin Peterson · 10 years ago
  7. dc9215f Issue #20791: copy.copy() now doesn't make a copy when the input is a bytes object. Initial patch by Peter Otten. by Antoine Pitrou · 10 years ago
  8. 5c1c3b4 Issue #11480: Fixed copy.copy to work with classes with custom metaclasses. by Alexandre Vassalotti · 10 years ago
  9. 4dc9c84 #11572: improvements to copy module tests along with removal of old test suite by Sandro Tosi · 13 years ago
  10. e90ec36 don't memoize objects that are their own copies (closes #12422) by Benjamin Peterson · 13 years ago
  11. d6399d2 Fix running the copy module from the command-line (however use{ful,less} it may be). by Antoine Pitrou · 14 years ago
  12. 3941a8f Issue #1100562: Fix deep-copying of objects derived from the list and dict types. by Antoine Pitrou · 14 years ago
  13. 1fc0d2b Merged revisions 76571 via svnmerge from by Antoine Pitrou · 14 years ago
  14. 6e61006 Merged revisions 72669 via svnmerge from by Antoine Pitrou · 15 years ago
  15. 1f2ba4b Rename the repr module to reprlib. by Alexandre Vassalotti · 16 years ago
  16. f7fa63d Rename copy_reg module to copyreg. by Alexandre Vassalotti · 16 years ago
  17. cc47b05 Merged revisions 61834,61841-61842,61851-61853,61863-61864,61869-61870,61874,61889 via svnmerge from by Christian Heimes · 16 years ago
  18. 98297ee Merging the py3k-pep3137 branch back into the py3k branch. by Guido van Rossum · 17 years ago
  19. 1325790 Merged revisions 55795-55816 via svnmerge from by Guido van Rossum · 17 years ago
  20. 756f139 Register a dispatcher for str8. (This makes test_copy.py pass again.) by Walter Dörwald · 17 years ago
  21. 805365e Merged revisions 55007-55179 via svnmerge from by Guido van Rossum · 17 years ago
  22. ef87d6e Rip out all the u"..." literals and calls to unicode(). by Guido van Rossum · 17 years ago
  23. b69b2e5 Remove duplicate refs to int from int/long unification presumably. (There might be more refs like these.) by Neal Norwitz · 17 years ago
  24. cc2b016 - PEP 3106: dict.iterkeys(), .iteritems(), .itervalues() are now gone; by Guido van Rossum · 17 years ago
  25. be19ed7 Fix most trivially-findable print statements. by Guido van Rossum · 17 years ago
  26. e2a383d Rip out 'long' and 'L'-suffixed integer literals. (Rough first cut.) by Guido van Rossum · 17 years ago
  27. 65810fe SF patch 1495675: Remove types.InstanceType and new.instance (Collin Winter) by Guido van Rossum · 18 years ago
  28. d6e7e73 Whitespace normalization. by Tim Peters · 18 years ago
  29. 1968ad3 - Patch 1433928: by Guido van Rossum · 18 years ago
  30. f9d88ab SF bug #1219361 Fix typo by Raymond Hettinger · 19 years ago
  31. e2713be Build with --disable-unicode again. Fixes #1158607. Will backport to 2.4. by Martin v. Löwis · 19 years ago
  32. f715366 Reduce the usage of the types module. by Raymond Hettinger · 19 years ago
  33. f0e3569 Refactor the copy dispatcher code in copy.py. Simplifies and shortens by Raymond Hettinger · 20 years ago
  34. ba8f5ff Copy builtin functions as atomic. Fixes #746304. Will backport to 2.2. by Martin v. Löwis · 21 years ago
  35. 99d2c25 SF patch 707900, fixing bug 702858, by Steven Taschuk. by Guido van Rossum · 21 years ago
  36. 68468eb Get rid of many apply() calls. by Guido van Rossum · 21 years ago
  37. f2715e0 Whitespace normalization. by Tim Peters · 21 years ago
  38. 9c9cf41 Remove now unused _better_reduce. by Guido van Rossum · 21 years ago
  39. e690883 Use __reduce_ex__ in copy.py. The test_*copy_cant() tests are simpler again. by Guido van Rossum · 21 years ago
  40. 1dca482 Somehow, copy() of a classic class object was handled by Guido van Rossum · 21 years ago
  41. c06e3ac Add support for copy_reg.dispatch_table. by Guido van Rossum · 21 years ago
  42. 5aac4e6 Move _better_reduce from copy.py to copy_reg.py, and also use it in by Guido van Rossum · 21 years ago
  43. 85233bf Fix a bug in the way __getnewargs__ was handled. by Guido van Rossum · 21 years ago
  44. c755758 Support all the new stuff supported by the new pickle code: by Guido van Rossum · 21 years ago
  45. 90e05b0 Support __reduce__ returning a 4-tuple or 5-tuple. by Guido van Rossum · 21 years ago
  46. 71b7556 Support copying booleans. Fixes #668925. by Martin v. Löwis · 21 years ago
  47. 6115460 Make sure that *any* object whose id() is used as a memo key is kept by Guido van Rossum · 22 years ago
  48. 11ade1d SF patch 560794 (Greg Chapman): deepcopy can't handle custom metaclasses. by Guido van Rossum · 22 years ago
  49. 3e3583c Fix from SF patch 565085: copy._reduction doesn't __setstate__. by Guido van Rossum · 22 years ago
  50. e0d4972 Replaced .keys() with dictionary iterators by Raymond Hettinger · 22 years ago
  51. 54f0222 SF 563203. Replaced 'has_key()' with 'in'. by Raymond Hettinger · 22 years ago
  52. 88b666c SF patch 518765 (Derek Harland): Bug in copy.py when used through rexec. by Guido van Rossum · 22 years ago
  53. 1e91c14 Fix for SF bug ##497426: can't deepcopy recursive new objects by Guido van Rossum · 22 years ago
  54. 8b9def3 Add complex to the dispatch tables, to avoid going through the whole by Guido van Rossum · 23 years ago
  55. 6cef6d5 Changes to copy() and deepcopy() in copy.py to support __reduce__ as a by Guido van Rossum · 23 years ago
  56. 339d0f7 Patch #445762: Support --disable-unicode by Martin v. Löwis · 23 years ago
  57. e99d5ea added __all__ lists to a number of Python modules by Skip Montanaro · 23 years ago
  58. 88869f9 Whitespace normalization. by Tim Peters · 23 years ago
  59. f8baad0 Patch by Finn Bock to support PyStringMap in Jython. by Guido van Rossum · 24 years ago
  60. f156a44 Added Unicode objects to the copy mechanism. Since these are immutable, by Marc-André Lemburg · 24 years ago
  61. 227b120 Convert some old-style string exceptions to class exceptions. by Fred Drake · 24 years ago
  62. 4b8c6ea Actually, the previous batch's comment should have been different; by Guido van Rossum · 24 years ago
  63. 2fff84d Don't die if CodeType doesn't exist -- ignore the error. This could by Guido van Rossum · 25 years ago
  64. 8ca8420 A few lines were indented using spaces instead of tabs -- fix them. by Guido van Rossum · 26 years ago
  65. 677fc84 As Mike Fletcher pointed out, a __deepcopy__() method should be called by Guido van Rossum · 26 years ago
  66. c5d2d51 Apply the same change to classes without an __getinitargs__() method by Guido van Rossum · 26 years ago
  67. e6eef4b Use __dict__.update(state) instead of for loop over state.items() and by Guido van Rossum · 27 years ago
  68. abfdd70 Add XXX note about wanting support for copy_reg.py... by Guido van Rossum · 27 years ago
  69. 558be28 Make sure the objects returned by __getinitargs__() are kept alive (in by Guido van Rossum · 27 years ago
  70. f7cea10 Remove '(' in column 0 of doc strings. Add dependency on dict.copy(). by Guido van Rossum · 27 years ago
  71. 6afff61 Memoize _deepcopy_tuple() -- maybe this helps Tommy's problem. by Guido van Rossum · 28 years ago
  72. fefbbe5 fix bogus hasttr usage by Guido van Rossum · 29 years ago
  73. 55d2f39 rename copy.Error to copy.error by Guido van Rossum · 29 years ago
  74. cc6764c added __doc__ strings etc. by Guido van Rossum · 29 years ago
  75. 409780f shallow and deep copy operations by Guido van Rossum · 29 years ago