summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
* Add cPickle support for PROTO. Duplicated PROTO/LONG1/LONG4 code inTim Peters2003-02-021-2/+23
* One more use of ifilter()Raymond Hettinger2003-02-021-3/+2
* SF patch #678899: Save time and memory by using itertools in sets module.Raymond Hettinger2003-02-021-19/+11
* long(string, base) now takes time linear in len(string) when base is aTim Peters2003-02-022-14/+2
* cPickle.c: Full support for the new LONG1 and LONG4. Added comments.Tim Peters2003-02-022-18/+64
* The C pickle now knows how to deal with a proto= argument. AssortedTim Peters2003-02-011-11/+9
* removed bizarre construct, no idea why it was there...Just van Rossum2003-02-011-1/+0
* icon support by Robin Dunn, closes patch #678218Just van Rossum2003-02-011-1/+14
* There's no good reason for datetime objects to expose __getstate__()Tim Peters2003-02-011-12/+0
* Neaten ref count test.Raymond Hettinger2003-02-011-1/+1
* Removed all uses of the out-of-favor __safe_for_unpickling__ magicTim Peters2003-02-012-5/+0
* Move itertools module from the sandbox and into production.Raymond Hettinger2003-02-011-0/+158
* Changed the tests to stop using __setstate__(). __setstate__() noTim Peters2003-01-311-65/+31
* Pass the preprocessor options also to the resource compilerThomas Heller2003-01-311-1/+1
* Add extension management to __all__.Guido van Rossum2003-01-311-1/+2
* Change the default protocol back to 0.Guido van Rossum2003-01-311-8/+12
* Another extension to reduce(). It can return a 4- or 5-tuple now.Guido van Rossum2003-01-311-67/+92
* Provide __module__ attributes for functions defined in C and Python.Jeremy Hylton2003-01-312-3/+10
* I believe this fixesMichael W. Hudson2003-01-311-2/+3
* Change the treatment of positions returned by PEP293Walter Dörwald2003-01-311-22/+74
* Pass the object to save_reduce(), so the memoize() call can go intoGuido van Rossum2003-01-311-3/+8
* Add a magical feature to save_reduce so that __reduce__ can causeGuido van Rossum2003-01-311-4/+40
* It's Official: for LONG1/LONG4, a "byte count" of 0 is taken as aTim Peters2003-01-312-9/+25
* Make StringIO its own iterator, similar to real files.Guido van Rossum2003-01-311-1/+9
* M PyShell.pyKurt B. Kaiser2003-01-312-84/+42
* Fix typoNeal Norwitz2003-01-311-1/+1
* Linear-time implementations of {encode,decode}_long.Tim Peters2003-01-311-19/+50
* typo in commentBarry Warsaw2003-01-311-1/+1
* Give people who run "pydoc re" a clue.Neil Schemenauer2003-01-311-1/+1
* Change the approach to pickling to use __reduce__ everywhere. MostGuido van Rossum2003-01-301-53/+49
* pickle.py has a few doctest'ed internal functions, so run their tests.Tim Peters2003-01-301-0/+1
* Check whether the choosen encoding requires byte swappingWalter Dörwald2003-01-301-10/+14
* Updated the INST/OBJ docs, to say they really are (almost) identicalTim Peters2003-01-301-0/+6
* load_inst(), load_obj(): Put the bulk of these into a common newTim Peters2003-01-301-26/+18
* dis(): Simplified stack emulation a bit.Tim Peters2003-01-301-14/+16
* There was a subtle big in save_newobj(): it used self.save_global(t)Guido van Rossum2003-01-301-1/+2
* Slight code rearrangement to avoid testing getstate twice.Guido van Rossum2003-01-301-22/+23
* In save_newobj(), if an object's __getnewargs__ and __getstate__ areGuido van Rossum2003-01-301-0/+23
* SF patch 672098: Three __contains__ implementationsRaymond Hettinger2003-01-303-0/+7
* Use %c rather than chr() to turn some ints into chars.Guido van Rossum2003-01-291-2/+2
* dis(): This had a problem with proto 0 pickles, in that POP sometimesTim Peters2003-01-291-17/+113
* Implement appropriate __getnewargs__ for all immutable subclassable builtinGuido van Rossum2003-01-293-15/+61
* Only log a message and chmod() when the mode isn't already what weGuido van Rossum2003-01-291-3/+6
* - The mac-specific tests should also be run on darwin.Jack Jansen2003-01-291-1/+2
* minor grammar tweaksSkip Montanaro2003-01-291-5/+5
* Teach the parsermodule about floor division. FixesMichael W. Hudson2003-01-291-0/+5
* Moved aepack test code to the test suite.Jack Jansen2003-01-292-40/+84
* Some objects could have uninitialized attributes. Fixed.Jack Jansen2003-01-291-0/+2
* test_macfs found an error on the first day of its existence: round trips for ...Jack Jansen2003-01-291-1/+5
* Document the demise of all pretenses of safety, and the differenceGuido van Rossum2003-01-291-4/+17