| Commit message (Expand) | Author | Age | Files | Lines |
* | Getting rid of macfs and FSSpecs. | Jack Jansen | 2003-02-05 | 1 | -7/+5 |
|
|
* | Got rid of macfs | Jack Jansen | 2003-02-05 | 1 | -5/+3 |
|
|
* | Fixed a few typos, and changed FSCreateResourceFile filename argument to unic... | Jack Jansen | 2003-02-05 | 1 | -3/+3 |
|
|
* | Use os.path.realpath() in stead of abspath(), so the tests don't fail if | Jack Jansen | 2003-02-05 | 2 | -4/+4 |
|
|
* | SF patch #674396: Apply UserDict.DictMixin to expand dbshelve and dbojb | Raymond Hettinger | 2003-02-05 | 2 | -2/+4 |
|
|
* | Build pickler_choices list in a lazier way. | Tim Peters | 2003-02-05 | 1 | -16/+5 |
|
|
* | cPickle: exempt two_tuple from GC -- it's a speed hack, and doesn't | Tim Peters | 2003-02-04 | 2 | -33/+55 |
|
|
* | cPickle now generates proto 2 EXT[124] when appropriate. | Tim Peters | 2003-02-04 | 1 | -18/+18 |
|
|
* | Make sure filter() never returns tuple, str or unicode | Walter Dörwald | 2003-02-04 | 1 | -0/+23 |
|
|
* | Fix for [ 543344 ] Interpreter crashes when recoding; suggested | Marc-André Lemburg | 2003-02-04 | 1 | -0/+9 |
|
|
* | Added basic tests of copy_reg's extension registry. | Tim Peters | 2003-02-04 | 1 | -0/+78 |
|
|
* | Add a test that checks that filter() honors the sq_item slot for | Walter Dörwald | 2003-02-04 | 1 | -0/+13 |
|
|
* | filterstring() and filterunicode() in Python/bltinmodule.c | Walter Dörwald | 2003-02-04 | 1 | -0/+21 |
|
|
* | - Handle the img and MediaFormat modules not being available (by not | Jack Jansen | 2003-02-04 | 1 | -24/+40 |
|
|
* | Add refcount test. | Raymond Hettinger | 2003-02-04 | 1 | -3/+12 |
|
|
* | cPickle can load pickles using proto 2 EXT[124] now, but can't yet | Tim Peters | 2003-02-04 | 1 | -1/+1 |
|
|
* | Rename the extension registry variables to have leading underscores -- | Guido van Rossum | 2003-02-04 | 2 | -23/+23 |
|
|
* | Whitespace normalization. | Tim Peters | 2003-02-04 | 1 | -1/+1 |
|
|
* | Brought some module variables into synch with pickle.py's current values. | Tim Peters | 2003-02-04 | 1 | -0/+2 |
|
|
* | Fix typo. | Walter Dörwald | 2003-02-03 | 1 | -1/+1 |
|
|
* | Add a new test script that tests various features of the sys | Walter Dörwald | 2003-02-03 | 1 | -0/+211 |
|
|
* | test_newobj_tuple(), test_newobj_list(): These tests should work under | Tim Peters | 2003-02-03 | 1 | -8/+10 |
|
|
* | test_newobj_generic(): Use the global protocols vector instead of a | Tim Peters | 2003-02-03 | 1 | -1/+1 |
|
|
* | Added a bit to the EXT[124] tests, and refactored them to squash code | Tim Peters | 2003-02-03 | 1 | -51/+27 |
|
|
* | Do a better job of testing that opcodes aren't generated under protocols | Tim Peters | 2003-02-03 | 1 | -18/+32 |
|
|
* | - Thanks to Scott David Daniels, a subtle bug in how the zlib | Guido van Rossum | 2003-02-03 | 2 | -177/+444 |
|
|
* | Fix typos. | Walter Dörwald | 2003-02-03 | 1 | -2/+2 |
|
|
* | Port test_pow.py to PyUnit. From SF patch #662807 | Walter Dörwald | 2003-02-03 | 2 | -149/+110 |
|
|
* | _slotnames(): this is a fairly expensive calculation. Cache the | Guido van Rossum | 2003-02-03 | 1 | -6/+23 |
|
|
* | [Bug #676292] BaseHTTPServer incorrectly parses protocol; fix by Andrew Dalke | Andrew M. Kuchling | 2003-02-03 | 1 | -5/+16 |
|
|
* | _slotnames(): exclude __dict__ and __weakref__; these aren't real | Guido van Rossum | 2003-02-03 | 1 | -1/+2 |
|
|
* | Support keyword argument 'bin', with a pending deprecation warning. | Guido van Rossum | 2003-02-03 | 1 | -5/+13 |
|
|
* | Proper testing of proto 2 in part requires checking that the new opcodes | Tim Peters | 2003-02-03 | 1 | -11/+10 |
|
|
* | test_float_overflow(): make shuge (added last week) a little less | Guido van Rossum | 2003-02-03 | 1 | -1/+1 |
|
|
* | Bug #676273: Rewrite paragraph in module docstring | Andrew M. Kuchling | 2003-02-03 | 1 | -5/+5 |
|
|
* | test_support.requires(): Instead of raising TestSkipped, raise a new | Fred Drake | 2003-02-03 | 2 | -2/+18 |
|
|
* | Add __all__ (suggested by Raymond Hettinger). | Greg Ward | 2003-02-03 | 1 | -3/+5 |
|
|
* | Remove test_b1 and test_b2 from the list of tests | Walter Dörwald | 2003-02-03 | 1 | -2/+0 |
|
|
* | patch #664131, fix config command on OSX and Linux | Just van Rossum | 2003-02-03 | 1 | -1/+2 |
|
|
* | Fix bug | Michael W. Hudson | 2003-02-03 | 1 | -9/+15 |
|
|
* | fix for use on python 2.1 | Gregory P. Smith | 2003-02-03 | 1 | -2/+0 |
|
|
* | cPickle now implements enough of protocol 2 to enable all | Guido van Rossum | 2003-02-03 | 1 | -3/+3 |
|
|
* | Fix typos. | Walter Dörwald | 2003-02-02 | 1 | -4/+4 |
|
|
* | Getting rid of macfs usage and almost all FSSpecs. Untested on MacOS9. | Jack Jansen | 2003-02-02 | 1 | -18/+22 |
|
|
* | cPickle support for TUPLE[123]. Incidentally plugged several undetected | Tim Peters | 2003-02-02 | 2 | -7/+40 |
|
|
* | jeez, now I know why I shouldn't even _want_ to learn sh. | Just van Rossum | 2003-02-02 | 1 | -4/+4 |
|
|
* | Implemented proto 2 NEWTRUE and NEWFALSE in cPickle. | Tim Peters | 2003-02-02 | 1 | -0/+6 |
|
|
* | Beefed up the tests by putting in more "for proto in protocols:" outer | Tim Peters | 2003-02-02 | 1 | -86/+231 |
|
|
* | Add cPickle support for PROTO. Duplicated PROTO/LONG1/LONG4 code in | Tim Peters | 2003-02-02 | 1 | -2/+23 |
|
|
* | One more use of ifilter() | Raymond Hettinger | 2003-02-02 | 1 | -3/+2 |
|
|