summaryrefslogtreecommitdiffstats
path: root/Modules
Commit message (Expand)AuthorAgeFilesLines
* Beefed up the tests by putting in more "for proto in protocols:" outerTim Peters2003-02-021-0/+5
* Fix compiler warningNeal Norwitz2003-02-022-1/+2
* dump(): Added asserts that self->proto is sane.Tim Peters2003-02-021-1/+2
* dump(): Fixed a stupid bug in new code. It wasn't possible for the bugTim Peters2003-02-021-1/+1
* Add cPickle support for PROTO. Duplicated PROTO/LONG1/LONG4 code inTim Peters2003-02-021-2/+56
* Fix memory leak: free memory storing the content model passed to theFred Drake2003-02-021-24/+48
* cPickle.c: Full support for the new LONG1 and LONG4. Added comments.Tim Peters2003-02-021-21/+161
* The C pickle now knows how to deal with a proto= argument. AssortedTim Peters2003-02-011-45/+86
* Removed needless include of errno.h.Tim Peters2003-02-011-4/+0
* The module docstring had an RCS ID from 1999 embedded in it. EnoughTim Peters2003-02-011-3/+1
* Trimmed trailing whitespace.Tim Peters2003-02-011-223/+223
* Added #defines for proto 2 opcodes; gave the Pickler a proto member;Tim Peters2003-02-011-16/+30
* New functions alloc_{time,datetime}. Got rid of all setstate-likeTim Peters2003-02-011-168/+123
* There's no good reason for datetime objects to expose __getstate__()Tim Peters2003-02-011-52/+4
* Removed all uses of the out-of-favor __safe_for_unpickling__ magicTim Peters2003-02-012-73/+5
* All over: changed comments to reflect pickling is straightforward now,Tim Peters2003-02-011-7/+5
* delta_setstate(): This waS no longer referenced, so nukeit.Tim Peters2003-02-011-38/+2
* Move itertools module from the sandbox and into production.Raymond Hettinger2003-02-011-0/+1532
* The various datetime object __setstate__() methods are no longer publicTim Peters2003-01-311-116/+105
* Ignore the state returned by __reduce__ if it is Py_None.Guido van Rossum2003-01-311-0/+2
* 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
* Change the treatment of positions returned by PEP293Walter Dörwald2003-01-311-4/+14
* Initialize swappedinput to silence the compiler warning aboutWalter Dörwald2003-01-311-1/+1
* _PyLong_NumBits(): The definition of this was too specific to the quirkyTim Peters2003-01-311-21/+27
* Backward branches are disgusting, at least when a forward branchTim Peters2003-01-311-6/+6
* Change the approach to pickling to use __reduce__ everywhere. MostGuido van Rossum2003-01-301-242/+221
* Check whether the choosen encoding requires byte swappingWalter Dörwald2003-01-301-1/+79
* 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
* Teach the parsermodule about floor division. FixesMichael W. Hudson2003-01-291-0/+2
* Added new private API function _PyLong_NumBits. This will be used at theTim Peters2003-01-281-2/+39
* Bump the version numberBarry Warsaw2003-01-281-1/+1
* Update to the final version released as Expat 1.95.6 (maintainingFred Drake2003-01-281-78/+66
* Support socket timeout in SSL, by Geoff Talvola.Guido van Rossum2003-01-271-0/+51
* Fix reference counting of iconvcodec_Type. Fixes #670715.Martin v. Löwis2003-01-271-6/+4
* Get rid of compiler warnings on RedhatNeal Norwitz2003-01-261-2/+2
* Add _iconv_codec to Setup.dist. Use PyModule_ functions.Martin v. Löwis2003-01-262-8/+6
* Patch #670715: Universal Unicode Codec for POSIX iconv.Martin v. Löwis2003-01-261-0/+626
* Undo inclusion of Python.h. Remove HAVE_MEMCPY section.Martin v. Löwis2003-01-261-12/+0
* Uncomment usage of expat_config.hMartin v. Löwis2003-01-251-0/+2
* Incorporate Expat 1.95.6.Martin v. Löwis2003-01-2510-3941/+5444
* date and datetime comparison: when we don't know how toTim Peters2003-01-241-1/+13
* Updated the astimezone() proof to recover from all the last week'sTim Peters2003-01-241-77/+94
* Fix typoNeal Norwitz2003-01-231-1/+1
* SF bug 660872: datetimetz constructors behave counterintuitively (2.3a1).Tim Peters2003-01-231-12/+20
* Reimplemented datetime.now() to be useful.Tim Peters2003-01-231-7/+17
* fromutc(): Repair incorrect failure return, as noted by NealN. Thanks!Tim Peters2003-01-231-1/+1
* Bringing the code and test suite into line with doc and NEWS changesTim Peters2003-01-231-92/+127
* Convert booleans to integers in IntVar.set. Fixes #671741.Martin v. Löwis2003-01-221-1/+3