2003-02-04 |
Tim Peters | cPickle: exempt two_tuple from GC -- it's a speed... |
commit | commitdiff | tree | snapshot |
2003-02-04 |
Neil Schemenauer | If a float is passed where a int is expected, issue... |
commit | commitdiff | tree | snapshot |
2003-02-04 |
Tim Peters | cPickle now generates proto 2 EXT[124] when appropriate. |
commit | commitdiff | tree | snapshot |
2003-02-04 |
Neal Norwitz | Remove forward static reference since it is not required |
commit | commitdiff | tree | snapshot |
2003-02-04 |
Neal Norwitz | Whitespace normalization |
commit | commitdiff | tree | snapshot |
2003-02-04 |
Walter Dörwald | Make sure filter() never returns tuple, str or unicode |
commit | commitdiff | tree | snapshot |
2003-02-04 |
Marc-André... | Fix for [ 543344 ] Interpreter crashes when recoding... |
commit | commitdiff | tree | snapshot |
2003-02-04 |
Fred Drake | supports_unicode_filenames was not in the right location. |
commit | commitdiff | tree | snapshot |
2003-02-04 |
Walter Dörwald | Use size_t instead of int for various variables to... |
commit | commitdiff | tree | snapshot |
2003-02-04 |
Tim Peters | Added basic tests of copy_reg's extension registry. |
commit | commitdiff | tree | snapshot |
2003-02-04 |
Walter Dörwald | Add a test that checks that filter() honors the sq_item... |
commit | commitdiff | tree | snapshot |
2003-02-04 |
Walter Dörwald | PyUnicode_Resize() doesn't free its argument in case... |
commit | commitdiff | tree | snapshot |
2003-02-04 |
Walter Dörwald | filterstring() and filterunicode() in Python/bltinmodule.c |
commit | commitdiff | tree | snapshot |
2003-02-04 |
Jack Jansen | - Handle the img and MediaFormat modules not being... |
commit | commitdiff | tree | snapshot |
2003-02-04 |
Jack Jansen | Changed an edit instruction because of a changed parame... |
commit | commitdiff | tree | snapshot |
2003-02-04 |
Fred Drake | Update to better reflect the usage of struct_time insta... |
commit | commitdiff | tree | snapshot |
2003-02-04 |
Fred Drake | Twiddle. |
commit | commitdiff | tree | snapshot |
2003-02-04 |
Raymond Hettinger | Add refcount test. |
commit | commitdiff | tree | snapshot |
2003-02-04 |
Tim Peters | Typo in comment. |
commit | commitdiff | tree | snapshot |
2003-02-04 |
Tim Peters | cPickle can load pickles using proto 2 EXT[124] now... |
commit | commitdiff | tree | snapshot |
2003-02-04 |
Guido van Rossum | Rename the extension registry variables to have leading... |
commit | commitdiff | tree | snapshot |
2003-02-04 |
Tim Peters | Whitespace normalization. |
commit | commitdiff | tree | snapshot |
2003-02-04 |
Tim Peters | Typo repair. |
commit | commitdiff | tree | snapshot |
2003-02-04 |
Tim Peters | Brought some module variables into synch with pickle... |
commit | commitdiff | tree | snapshot |
2003-02-03 |
Walter Dörwald | Fix typo. |
commit | commitdiff | tree | snapshot |
2003-02-03 |
Walter Dörwald | Add a new test script that tests various features of... |
commit | commitdiff | tree | snapshot |
2003-02-03 |
Tim Peters | test_newobj_tuple(), test_newobj_list(): These tests... |
commit | commitdiff | tree | snapshot |
2003-02-03 |
Tim Peters | test_newobj_generic(): Use the global protocols vector... |
commit | commitdiff | tree | snapshot |
2003-02-03 |
Tim Peters | Added a bit to the EXT[124] tests, and refactored them... |
commit | commitdiff | tree | snapshot |
2003-02-03 |
Tim Peters | load_counted_long(): Changed a ValueError to an Unpick... |
commit | commitdiff | tree | snapshot |
2003-02-03 |
Tim Peters | Do a better job of testing that opcodes aren't generate... |
commit | commitdiff | tree | snapshot |
2003-02-03 |
Walter Dörwald | Fix typo. |
commit | commitdiff | tree | snapshot |
2003-02-03 |
Guido van Rossum | - Thanks to Scott David Daniels, a subtle bug in how... |
commit | commitdiff | tree | snapshot |
2003-02-03 |
Neal Norwitz | SF #661437, apply() should get PendingDeprecation |
commit | commitdiff | tree | snapshot |
2003-02-03 |
Walter Dörwald | Fix typos. |
commit | commitdiff | tree | snapshot |
2003-02-03 |
Walter Dörwald | Port test_pow.py to PyUnit. From SF patch #662807 |
commit | commitdiff | tree | snapshot |
2003-02-03 |
Guido van Rossum | _slotnames(): this is a fairly expensive calculation... |
commit | commitdiff | tree | snapshot |
2003-02-03 |
Andrew M. Kuchling | [Bug #676292] BaseHTTPServer incorrectly parses protoco... |
commit | commitdiff | tree | snapshot |
2003-02-03 |
Guido van Rossum | _slotnames(): exclude __dict__ and __weakref__; these... |
commit | commitdiff | tree | snapshot |
2003-02-03 |
Guido van Rossum | Support keyword argument 'bin', with a pending deprecat... |
commit | commitdiff | tree | snapshot |
2003-02-03 |
Tim Peters | Proper testing of proto 2 in part requires checking... |
commit | commitdiff | tree | snapshot |
2003-02-03 |
Skip Montanaro | braino |
commit | commitdiff | tree | snapshot |
2003-02-03 |
Tim Peters | PDATA_PUSH and PDATA_APPEND. documented, and reformatt... |
commit | commitdiff | tree | snapshot |
2003-02-03 |
Andrew M. Kuchling | Bug #678077: Suggest alternative to os.getlogin() |
commit | commitdiff | tree | snapshot |
2003-02-03 |
Skip Montanaro | try to avoid gross incompatibilities with older version... |
commit | commitdiff | tree | snapshot |
2003-02-03 |
Skip Montanaro | try to avoid gross incompatibilities with earlier versi... |
commit | commitdiff | tree | snapshot |
2003-02-03 |
Guido van Rossum | _PyLong_Sign(): remove an assert that needed a variable... |
commit | commitdiff | tree | snapshot |
2003-02-03 |
Guido van Rossum | test_float_overflow(): make shuge (added last week... |
commit | commitdiff | tree | snapshot |
2003-02-03 |
Andrew M. Kuchling | Bug #676273: Rewrite paragraph in module docstring |
commit | commitdiff | tree | snapshot |
2003-02-03 |
Fred Drake | test_support.requires(): Instead of raising TestSkippe... |
commit | commitdiff | tree | snapshot |
2003-02-03 |
Skip Montanaro | add note about new db2pickle.py and pickle2db.py scripts |
commit | commitdiff | tree | snapshot |
2003-02-03 |
Andrew M. Kuchling | [Bug #679251] Use correct constant name |
commit | commitdiff | tree | snapshot |
2003-02-03 |
Skip Montanaro | note db2pickle.py and pickle2db.py |
commit | commitdiff | tree | snapshot |
2003-02-03 |
Skip Montanaro | dump database files to pickle format |
commit | commitdiff | tree | snapshot |
2003-02-03 |
Skip Montanaro | convert pickles generated by db2pickle.py back to datab... |
commit | commitdiff | tree | snapshot |
2003-02-03 |
Greg Ward | Add __all__ (suggested by Raymond Hettinger). |
commit | commitdiff | tree | snapshot |
2003-02-03 |
Walter Dörwald | Remove test_b1 and test_b2 from the list of tests |
commit | commitdiff | tree | snapshot |
2003-02-03 |
Just van Rossum | patch #664131, fix config command on OSX and Linux |
commit | commitdiff | tree | snapshot |
2003-02-03 |
Michael W.... | Fix bug |
commit | commitdiff | tree | snapshot |
2003-02-03 |
Skip Montanaro | add missing "summary" from long options list |
commit | commitdiff | tree | snapshot |
2003-02-03 |
Skip Montanaro | * Add description of PyInt_FromString. |
commit | commitdiff | tree | snapshot |
2003-02-03 |
Gregory P.... | version 4.1.4 (4.1.3 just released) |
commit | commitdiff | tree | snapshot |
2003-02-03 |
Gregory P.... | fix for use on python 2.1 |
commit | commitdiff | tree | snapshot |
2003-02-03 |
Skip Montanaro | Add PyFloat_FromString. Left the char **pend argument... |
commit | commitdiff | tree | snapshot |
2003-02-03 |
Guido van Rossum | cPickle now implements enough of protocol 2 to enable all |
commit | commitdiff | tree | snapshot |
2003-02-02 |
Walter Dörwald | Fix comment typo. |
commit | commitdiff | tree | snapshot |
2003-02-02 |
Walter Dörwald | Fix typos. |
commit | commitdiff | tree | snapshot |
2003-02-02 |
Walter Dörwald | Fix typos. |
commit | commitdiff | tree | snapshot |
2003-02-02 |
Jack Jansen | Getting rid of macfs usage and almost all FSSpecs.... |
commit | commitdiff | tree | snapshot |
2003-02-02 |
Jack Jansen | The FSAliasFile routines also have an in/out parameter. |
commit | commitdiff | tree | snapshot |
2003-02-02 |
Tim Peters | cPickle support for TUPLE[123]. Incidentally plugged... |
commit | commitdiff | tree | snapshot |
2003-02-02 |
Just van Rossum | jeez, now I know why I shouldn't even _want_ to learn sh. |
commit | commitdiff | tree | snapshot |
2003-02-02 |
Tim Peters | Massive edits. If p is a pointer to a struct, and... |
commit | commitdiff | tree | snapshot |
2003-02-02 |
Tim Peters | Minor cleanup, mostly adding horizontal whitespace... |
commit | commitdiff | tree | snapshot |
2003-02-02 |
Tim Peters | Implemented proto 2 NEWTRUE and NEWFALSE in cPickle. |
commit | commitdiff | tree | snapshot |
2003-02-02 |
Neal Norwitz | Get ossaudiodev to compile on freebsd 4.7 |
commit | commitdiff | tree | snapshot |
2003-02-02 |
Tim Peters | long_from_binary_base(): Sped this a little by computi... |
commit | commitdiff | tree | snapshot |
2003-02-02 |
Tim Peters | Beefed up the tests by putting in more "for proto in... |
commit | commitdiff | tree | snapshot |
2003-02-02 |
Neal Norwitz | Add some notes that got python to work on the snake... |
commit | commitdiff | tree | snapshot |
2003-02-02 |
Neal Norwitz | Fix compiler warning |
commit | commitdiff | tree | snapshot |
2003-02-02 |
Tim Peters | dump(): Added asserts that self->proto is sane. |
commit | commitdiff | tree | snapshot |
2003-02-02 |
Tim Peters | dump(): Fixed a stupid bug in new code. It wasn't... |
commit | commitdiff | tree | snapshot |
2003-02-02 |
Tim Peters | Add cPickle support for PROTO. Duplicated PROTO/LONG1... |
commit | commitdiff | tree | snapshot |
2003-02-02 |
Raymond Hettinger | One more use of ifilter() |
commit | commitdiff | tree | snapshot |
2003-02-02 |
Raymond Hettinger | SF patch #678899: Save time and memory by using iterto... |
commit | commitdiff | tree | snapshot |
2003-02-02 |
Tim Peters | Tightened a too-generous assert. |
commit | commitdiff | tree | snapshot |
2003-02-02 |
Tim Peters | long(string, base) now takes time linear in len(string... |
commit | commitdiff | tree | snapshot |
2003-02-02 |
Fred Drake | Fix memory leak: free memory storing the content model... |
commit | commitdiff | tree | snapshot |
2003-02-02 |
Tim Peters | cPickle.c: Full support for the new LONG1 and LONG4... |
commit | commitdiff | tree | snapshot |
2003-02-01 |
Tim Peters | The C pickle now knows how to deal with a proto= argume... |
commit | commitdiff | tree | snapshot |
2003-02-01 |
Just van Rossum | removed bizarre construct, no idea why it was there... |
commit | commitdiff | tree | snapshot |
2003-02-01 |
Just van Rossum | patch #678211 from Robin Dunn |
commit | commitdiff | tree | snapshot |
2003-02-01 |
Just van Rossum | icon support by Robin Dunn, closes patch #678218 |
commit | commitdiff | tree | snapshot |
2003-02-01 |
Tim Peters | Removed needless include of errno.h. |
commit | commitdiff | tree | snapshot |
2003-02-01 |
Tim Peters | The module docstring had an RCS ID from 1999 embedded... |
commit | commitdiff | tree | snapshot |
2003-02-01 |
Tim Peters | Trimmed trailing whitespace. |
commit | commitdiff | tree | snapshot |
2003-02-01 |
Tim Peters | Added #defines for proto 2 opcodes; gave the Pickler... |
commit | commitdiff | tree | snapshot |
2003-02-01 |
Tim Peters | New functions alloc_{time,datetime}. Got rid of all... |
commit | commitdiff | tree | snapshot |
2003-02-01 |
Tim Peters | There's no good reason for datetime objects to expose... |
commit | commitdiff | tree | snapshot |
2003-02-01 |
Raymond Hettinger | Neaten ref count test. |
commit | commitdiff | tree | snapshot |
next |