summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* Move itertools module from the sandbox and into production.Raymond Hettinger2003-02-018-0/+2027
* The various datetime object __setstate__() methods are no longer publicTim Peters2003-01-312-117/+111
* Changed the tests to stop using __setstate__(). __setstate__() noTim Peters2003-01-311-65/+31
* Squash compiler wng about signed/unsigned comparison mismatch.Tim Peters2003-01-311-1/+1
* Ignore the state returned by __reduce__ if it is Py_None.Guido van Rossum2003-01-311-0/+2
* Patch #669198: Add cflags to RC compile.Thomas Heller2003-01-311-0/+3
* 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
* Document __module__.Jeremy Hylton2003-01-311-3/+11
* Provide __module__ attributes for functions defined in C and Python.Jeremy Hylton2003-01-318-18/+114
* SF patch #678257 by Geoff Talvola.Guido van Rossum2003-01-311-1/+1
* SF patch 676472 by Geoff Talvola, reviewed by Ben Laurie.Guido van Rossum2003-01-311-13/+65
* I believe this fixesMichael W. Hudson2003-01-311-2/+3
* Change the treatment of positions returned by PEP293Walter Dörwald2003-01-315-41/+122
* 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
* Initialize swappedinput to silence the compiler warning aboutWalter Dörwald2003-01-311-1/+1
* Make StringIO its own iterator, similar to real files.Guido van Rossum2003-01-311-1/+9
* _PyLong_NumBits(): The definition of this was too specific to the quirkyTim Peters2003-01-313-34/+55
* Fix typoRaymond Hettinger2003-01-311-1/+1
* SF bug #671447: StringIO doc doesn't say it's sometimes read-only.Raymond Hettinger2003-01-311-0/+5
* 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
* Backward branches are disgusting, at least when a forward branchTim Peters2003-01-311-6/+6
* Give people who run "pydoc re" a clue.Neil Schemenauer2003-01-311-1/+1
* Fix markup error.Fred Drake2003-01-301-1/+1
* Change the approach to pickling to use __reduce__ everywhere. MostGuido van Rossum2003-01-302-295/+270
* 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-302-11/+93
* 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
* Style consistency, so "grep ^function ..." works as expected.Fred Drake2003-01-301-2/+4
* dis(): Simplified stack emulation a bit.Tim Peters2003-01-301-14/+16
* I was in this module anyway, so I did some janitorial things.Michael W. Hudson2003-01-301-17/+14
* Add the get_completer() function based on Michael Stone's patch inMichael W. Hudson2003-01-301-0/+17
* 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
* Author markup: Andrew got to it firstRaymond Hettinger2003-01-301-1/+0
* SF patch 672098: Three __contains__ implementationsRaymond Hettinger2003-01-303-0/+7
* Fix [ 583477 ] wrong dest size.Mark Hammond2003-01-291-1/+1
* 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-2910-19/+133
* Only log a message and chmod() when the mode isn't already what weGuido van Rossum2003-01-291-3/+6