summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* Add PyFloat_FromString. Left the char **pend argument out of theSkip Montanaro2003-02-031-0/+5
* cPickle now implements enough of protocol 2 to enable allGuido van Rossum2003-02-031-3/+3
* Fix comment typo.Walter Dörwald2003-02-021-1/+1
* Fix typos.Walter Dörwald2003-02-021-5/+5
* Fix typos.Walter Dörwald2003-02-021-4/+4
* Getting rid of macfs usage and almost all FSSpecs. Untested on MacOS9.Jack Jansen2003-02-021-18/+22
* The FSAliasFile routines also have an in/out parameter.Jack Jansen2003-02-022-4/+9
* cPickle support for TUPLE[123]. Incidentally plugged several undetectedTim Peters2003-02-023-91/+250
* jeez, now I know why I shouldn't even _want_ to learn sh.Just van Rossum2003-02-021-4/+4
* Massive edits. If p is a pointer to a struct, and p->f is a pointer toTim Peters2003-02-021-89/+93
* Minor cleanup, mostly adding horizontal whitespace, and breaking apartTim Peters2003-02-021-31/+30
* Implemented proto 2 NEWTRUE and NEWFALSE in cPickle.Tim Peters2003-02-022-2/+40
* Get ossaudiodev to compile on freebsd 4.7Neal Norwitz2003-02-022-1/+20
* long_from_binary_base(): Sped this a little by computing the # of bitsTim Peters2003-02-021-6/+6
* Beefed up the tests by putting in more "for proto in protocols:" outerTim Peters2003-02-022-86/+236
* Add some notes that got python to work on the snake farmNeal Norwitz2003-02-021-0/+16
* 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-022-4/+79
* 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
* Tightened a too-generous assert.Tim Peters2003-02-021-1/+1
* long(string, base) now takes time linear in len(string) when base is aTim Peters2003-02-024-29/+113
* 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-024-41/+227
* The C pickle now knows how to deal with a proto= argument. AssortedTim Peters2003-02-012-56/+95
* removed bizarre construct, no idea why it was there...Just van Rossum2003-02-011-1/+0
* patch #678211 from Robin DunnJust van Rossum2003-02-011-7/+15
* icon support by Robin Dunn, closes patch #678218Just van Rossum2003-02-011-1/+14
* 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-013-66/+6
* Neaten ref count test.Raymond Hettinger2003-02-011-1/+1
* Removed all uses of the out-of-favor __safe_for_unpickling__ magicTim Peters2003-02-015-79/+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-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