| Commit message (Expand) | Author | Age | Files | Lines |
* | Fiddle comments and variable names in whichmodule(). | Jeremy Hylton | 2002-09-19 | 1 | -11/+10 |
|
|
* | whichmodule() should skip dummy package entries in sys.modules. | Jeremy Hylton | 2002-09-19 | 1 | -0/+2 |
|
|
* | Patch #505705: Remove eval in pickle and cPickle. | Martin v. Löwis | 2002-08-14 | 1 | -3/+10 |
|
|
* | Given the persistent id code a shot at a class before calling save_global(). | Jeremy Hylton | 2002-07-16 | 1 | -5/+5 |
|
|
* | Code modernization. Replace v=s[i]; del s[i] with single lookup v=s.pop(i) | Raymond Hettinger | 2002-06-30 | 1 | -14/+6 |
|
|
* | SF 563203. Replaced 'has_key()' with 'in'. | Raymond Hettinger | 2002-06-01 | 1 | -4/+4 |
|
|
* | Remove comment about inheritance, look one line up | Neal Norwitz | 2002-05-30 | 1 | -5/+1 |
|
|
* | Patch 560023 adding docstrings. 2.2 Candidate (after verifying modules were ... | Raymond Hettinger | 2002-05-29 | 1 | -3/+69 |
|
|
* | Whitespace normalization. | Tim Peters | 2002-05-23 | 1 | -1/+1 |
|
|
* | Patch 533291. Deprecate None return form of __reduce__. | Raymond Hettinger | 2002-05-21 | 1 | -0/+4 |
|
|
* | Add Pickler.clear_memo() so the pickle and cPickle modules are more similar. | Fred Drake | 2002-05-01 | 1 | -0/+3 |
|
|
* | Implement an idea by Paul Rubin: | Guido van Rossum | 2002-04-05 | 1 | -14/+12 |
|
|
* | Add the 'bool' type and its values 'False' and 'True', as described in | Guido van Rossum | 2002-04-03 | 1 | -0/+18 |
|
|
* | Fix for SF 502085. | Guido van Rossum | 2002-03-26 | 1 | -1/+5 |
|
|
* | SF #515018, delete global variable that was apparently used only | Neal Norwitz | 2002-02-11 | 1 | -0/+1 |
|
|
* | Pickler.save(): Fix for SF bug #494904: Cannot pickle a class with a | Guido van Rossum | 2001-12-19 | 1 | -0/+4 |
|
|
* | Two changes: | Barry Warsaw | 2001-11-15 | 1 | -8/+6 |
|
|
* | A better new, unique object | Jeremy Hylton | 2001-11-09 | 1 | -1/+1 |
|
|
* | Use cStringIO when available. | Jeremy Hylton | 2001-10-15 | 1 | -36/+4 |
|
|
* | Make these modules work when Python is compiled without Unicode support. | Guido van Rossum | 2001-09-21 | 1 | -4/+10 |
|
|
* | pickle.py, load_int(): Match cPickle's just-repaired ability to unpickle | Tim Peters | 2001-08-28 | 1 | -1/+5 |
|
|
* | Address SF #451547. The approach is a bit draconian: any object that | Guido van Rossum | 2001-08-17 | 1 | -0/+14 |
|
|
* | Merge of descr-branch back into trunk. | Tim Peters | 2001-08-02 | 1 | -0/+1 |
|
|
* | test_pickle works on sizeof(long)==8 boxes again. | Tim Peters | 2001-04-10 | 1 | -11/+18 |
|
|
* | Mechanical fiddling for easier reading: every "if" test was enclosed in | Tim Peters | 2001-04-10 | 1 | -35/+35 |
|
|
* | add module-level constants to __all__ | Skip Montanaro | 2001-02-18 | 1 | -0/+3 |
|
|
* | Whitespace normalization. | Tim Peters | 2001-02-09 | 1 | -2/+2 |
|
|
* | a few more __all__ lists | Skip Montanaro | 2001-02-07 | 1 | -0/+3 |
|
|
* | Finn Bock (SF patch #103349): | Guido van Rossum | 2001-01-22 | 1 | -0/+33 |
|
|
* | Whitespace normalization. | Tim Peters | 2001-01-15 | 1 | -15/+15 |
|
|
* | Minimal fix for the complaints about pickling Unicode objects. (SF | Guido van Rossum | 2000-12-19 | 1 | -0/+2 |
|
|
* | Get rid of string module and string exceptions. | Guido van Rossum | 2000-12-13 | 1 | -7/+10 |
|
|
* | Fix Bug #114293: | Jeremy Hylton | 2000-09-15 | 1 | -1/+41 |
|
|
* | Change string exceptions to class exceptions. | Guido van Rossum | 2000-06-29 | 1 | -2/+3 |
|
|
* | Marc-Andre Lemburg: support pickling Unicode objects, both in text | Guido van Rossum | 2000-03-10 | 1 | -0/+28 |
|
|
* | More trivial comment -> docstring transformations by Ka-Ping Yee, | Guido van Rossum | 2000-02-04 | 1 | -1/+1 |
|
|
* | Jeremy writes: | Guido van Rossum | 1999-10-10 | 1 | -1/+2 |
|
|
* | Don't use "exec" in find_class(). It's slow, unnecessary, and (as AMK | Guido van Rossum | 1999-03-25 | 1 | -5/+4 |
|
|
* | Jim Fulton writes: | Guido van Rossum | 1998-10-22 | 1 | -13/+16 |
|
|
* | In load_inst(), when instantiating an instance the old way (i.e. when | Guido van Rossum | 1998-09-15 | 1 | -4/+7 |
|
|
* | add handler for JPython's org.python.core.PyStringMap object, which | Jeremy Hylton | 1998-05-27 | 1 | -0/+7 |
|
|
* | Whoops! Add a missing 'instantiated = 1' to load_inst(); otherwise it | Guido van Rossum | 1998-04-13 | 1 | -0/+1 |
|
|
* | Correct dumb typo found by kjpylint (stack should be self.stack). | Guido van Rossum | 1998-03-31 | 1 | -1/+1 |
|
|
* | Correct a definite typo ('mem' should be 'memo'). | Guido van Rossum | 1998-03-31 | 1 | -1/+1 |
|
|
* | Mass check-in after untabifying all files that need it. | Guido van Rossum | 1998-03-26 | 1 | -72/+72 |
|
|
* | Fixed typo in docstring: "__ version__" --> "__version__" | Fred Drake | 1998-02-13 | 1 | -1/+1 |
|
|
* | Unpickler.load_inst(), Unpickler.load_obj(), Unpickler.load_build(): | Barry Warsaw | 1998-01-26 | 1 | -7/+28 |
|
|
* | Jim Fulton writes: | Guido van Rossum | 1997-12-10 | 1 | -5/+12 |
|
|
* | Don't specify base 0 to string.atoi when unpickling integers in text | Guido van Rossum | 1997-12-10 | 1 | -1/+1 |
|
|
* | When instantiating a class with no arguments and where the class does | Guido van Rossum | 1997-12-05 | 1 | -135/+40 |
|
|