index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Lib
/
copy.py
Commit message (
Expand
)
Author
Age
Files
Lines
*
Revert the renaming of repr to reprlib.
Brett Cannon
2008-05-23
1
-9/+10
*
Revert copy_reg -> copyreg rename.
Georg Brandl
2008-05-20
1
-1/+1
*
Changed references to the reprlib module to use its new name.
Alexandre Vassalotti
2008-05-16
1
-10/+9
*
Added module stub for copy_reg renaming in 3.0.
Alexandre Vassalotti
2008-05-11
1
-1/+1
*
Issue 2460: Make Ellipsis objects copyable.
Raymond Hettinger
2008-03-24
1
-1/+2
*
Whitespace normalization.
Tim Peters
2006-02-26
1
-1/+1
*
- Patch 1433928:
Guido van Rossum
2006-02-25
1
-1/+3
*
SF bug #1219361 Fix typo
Raymond Hettinger
2005-06-13
1
-1/+1
*
Build with --disable-unicode again. Fixes #1158607.
Martin v. Löwis
2005-03-08
1
-2/+2
*
Reduce the usage of the types module.
Raymond Hettinger
2005-02-07
1
-14/+14
*
Refactor the copy dispatcher code in copy.py. Simplifies and shortens
Raymond Hettinger
2004-03-08
1
-35/+17
*
Copy builtin functions as atomic. Fixes #746304. Will backport to 2.2.
Martin v. Löwis
2003-06-14
1
-0/+2
*
SF patch 707900, fixing bug 702858, by Steven Taschuk.
Guido van Rossum
2003-06-13
1
-0/+1
*
Get rid of many apply() calls.
Guido van Rossum
2003-02-27
1
-2/+2
*
Whitespace normalization.
Tim Peters
2003-02-19
1
-1/+1
*
Remove now unused _better_reduce.
Guido van Rossum
2003-02-19
1
-1/+1
*
Use __reduce_ex__ in copy.py. The test_*copy_cant() tests are simpler again.
Guido van Rossum
2003-02-19
1
-22/+34
*
Somehow, copy() of a classic class object was handled
Guido van Rossum
2003-02-07
1
-0/+1
*
Add support for copy_reg.dispatch_table.
Guido van Rossum
2003-02-07
1
-48/+50
*
Move _better_reduce from copy.py to copy_reg.py, and also use it in
Guido van Rossum
2003-02-06
1
-41/+1
*
Fix a bug in the way __getnewargs__ was handled.
Guido van Rossum
2003-02-06
1
-1/+1
*
Support all the new stuff supported by the new pickle code:
Guido van Rossum
2003-02-06
1
-11/+64
*
Support __reduce__ returning a 4-tuple or 5-tuple.
Guido van Rossum
2003-02-06
1
-1/+20
*
Support copying booleans. Fixes #668925.
Martin v. Löwis
2003-01-16
1
-0/+2
*
Make sure that *any* object whose id() is used as a memo key is kept
Guido van Rossum
2002-08-12
1
-2/+1
*
SF patch 560794 (Greg Chapman): deepcopy can't handle custom
Guido van Rossum
2002-06-10
1
-8/+15
*
Fix from SF patch 565085: copy._reduction doesn't __setstate__.
Guido van Rossum
2002-06-06
1
-1/+4
*
Replaced .keys() with dictionary iterators
Raymond Hettinger
2002-06-02
1
-4/+4
*
SF 563203. Replaced 'has_key()' with 'in'.
Raymond Hettinger
2002-06-01
1
-1/+1
*
SF patch 518765 (Derek Harland): Bug in copy.py when used through
Guido van Rossum
2002-02-28
1
-1/+4
*
Fix for SF bug ##497426: can't deepcopy recursive new objects
Guido van Rossum
2001-12-28
1
-4/+6
*
Add complex to the dispatch tables, to avoid going through the whole
Guido van Rossum
2001-09-28
1
-0/+8
*
Changes to copy() and deepcopy() in copy.py to support __reduce__ as a
Guido van Rossum
2001-09-28
1
-7/+39
*
Patch #445762: Support --disable-unicode
Martin v. Löwis
2001-08-17
1
-2/+8
*
added __all__ lists to a number of Python modules
Skip Montanaro
2001-01-20
1
-0/+2
*
Whitespace normalization.
Tim Peters
2001-01-14
1
-183/+183
*
Patch by Finn Bock to support PyStringMap in Jython.
Guido van Rossum
2000-11-27
1
-0/+9
*
Added Unicode objects to the copy mechanism. Since these are immutable,
Marc-André Lemburg
2000-09-07
1
-0/+2
*
Convert some old-style string exceptions to class exceptions.
Fred Drake
2000-08-17
1
-2/+3
*
Actually, the previous batch's comment should have been different;
Guido van Rossum
2000-02-04
1
-3/+1
*
Don't die if CodeType doesn't exist -- ignore the error. This could
Guido van Rossum
1999-01-25
1
-1/+4
*
A few lines were indented using spaces instead of tabs -- fix them.
Guido van Rossum
1998-03-26
1
-14/+14
*
As Mike Fletcher pointed out, a __deepcopy__() method should be called
Guido van Rossum
1998-03-13
1
-1/+1
*
Apply the same change to classes without an __getinitargs__() method
Guido van Rossum
1997-12-07
1
-5/+11
*
Use __dict__.update(state) instead of for loop over state.items() and
Guido van Rossum
1997-10-26
1
-11/+9
*
Add XXX note about wanting support for copy_reg.py...
Guido van Rossum
1997-10-07
1
-0/+2
*
Make sure the objects returned by __getinitargs__() are kept alive (in
Guido van Rossum
1997-08-20
1
-0/+18
*
Remove '(' in column 0 of doc strings.
Guido van Rossum
1997-05-28
1
-10/+12
*
Memoize _deepcopy_tuple() -- maybe this helps Tommy's problem.
Guido van Rossum
1996-06-17
1
-2/+6
*
fix bogus hasttr usage
Guido van Rossum
1995-03-22
1
-2/+2
[next]