| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | sligtly strengthen unit tests for copy.py | Alex Martelli | 2005-02-07 | 1 | -1/+27 |
| | | |||||
| * | fix bug 1114776 | Alex Martelli | 2005-02-06 | 1 | -0/+17 |
| | | |||||
| * | copy.py fixed to first lookup __copy__ from the instance being copied, | Anthony Baxter | 2005-01-25 | 1 | -1/+57 |
| | | | | | rather than only looking at the type - this was broken in 2.3. | ||||
| * | Copy builtin functions as atomic. Fixes #746304. Will backport to 2.2. | Martin v. Löwis | 2003-06-14 | 1 | -2/+2 |
| | | |||||
| * | SF patch 707900, fixing bug 702858, by Steven Taschuk. | Guido van Rossum | 2003-06-13 | 1 | -2/+49 |
| | | | | | | Copying a new-style class that had a reference to itself didn't work. (The same thing worked fine for old-style classes.) | ||||
| * | Fix SF #749831, copy raises SystemError when getstate raises exception | Neal Norwitz | 2003-06-08 | 1 | -0/+6 |
| | | |||||
| * | Combine the functionality of test_support.run_unittest() | Walter Dörwald | 2003-05-01 | 1 | -3/+1 |
| | | | | | | | | | | | and test_support.run_classtests() into run_unittest() and use it wherever possible. Also don't use "from test.test_support import ...", but "from test import test_support" in a few spots. From SF patch #662807. | ||||
| * | Use __reduce_ex__ in copy.py. The test_*copy_cant() tests are simpler again. | Guido van Rossum | 2003-02-19 | 1 | -8/+24 |
| | | |||||
| * | Somehow, copy() of a classic class object was handled | Guido van Rossum | 2003-02-07 | 1 | -1/+1 |
| | | | | | | | atomically, but deepcopy() didn't support this at all. I don't see any reason for this, so I'm adding ClassType to the set of types that are deep-copied atomically. | ||||
| * | Add support for copy_reg.dispatch_table. | Guido van Rossum | 2003-02-07 | 1 | -0/+27 |
| | | | | | | Rewrote copy() and deepcopy() without avoidable try/except statements; getattr(x, name, None) or dict.get() are much faster than try/except. | ||||
| * | Fix a bug in the way __getnewargs__ was handled. | Guido van Rossum | 2003-02-06 | 1 | -0/+18 |
| | | |||||
| * | Support all the new stuff supported by the new pickle code: | Guido van Rossum | 2003-02-06 | 1 | -2/+45 |
| | | | | | | | - subclasses of list or dict - __reduce__ returning a 4-tuple or 5-tuple - slots | ||||
| * | Support __reduce__ returning a 4-tuple or 5-tuple. | Guido van Rossum | 2003-02-06 | 1 | -0/+36 |
| | | |||||
| * | A test suite for the copy module. This should provide full code | Guido van Rossum | 2003-02-06 | 1 | -0/+384 |
| coverage. | |||||
