| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | Do a better job of testing that opcodes aren't generated under protocols | Tim Peters | 2003-02-03 | 1 | -18/+32 |
|
|
* | Fix typo. | Walter Dörwald | 2003-02-03 | 1 | -1/+1 |
|
|
* | - Thanks to Scott David Daniels, a subtle bug in how the zlib | Guido van Rossum | 2003-02-03 | 5 | -189/+495 |
|
|
* | SF #661437, apply() should get PendingDeprecation | Neal Norwitz | 2003-02-03 | 1 | -0/+3 |
|
|
* | 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 |
|
|
* | braino | Skip Montanaro | 2003-02-03 | 1 | -2/+2 |
|
|
* | PDATA_PUSH and PDATA_APPEND. documented, and reformatted for better | Tim Peters | 2003-02-03 | 1 | -30/+38 |
|
|
* | Bug #678077: Suggest alternative to os.getlogin() | Andrew M. Kuchling | 2003-02-03 | 1 | -1/+3 |
|
|
* | try to avoid gross incompatibilities with older versions of Python | Skip Montanaro | 2003-02-03 | 1 | -12/+12 |
|
|
* | try to avoid gross incompatibilities with earlier versions of Python | Skip Montanaro | 2003-02-03 | 1 | -12/+12 |
|
|
* | _PyLong_Sign(): remove an assert that needed a variable ndigits that | Guido van Rossum | 2003-02-03 | 1 | -3/+2 |
|
|
* | 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 note about new db2pickle.py and pickle2db.py scripts | Skip Montanaro | 2003-02-03 | 1 | -2/+19 |
|
|
* | [Bug #679251] Use correct constant name | Andrew M. Kuchling | 2003-02-03 | 1 | -6/+6 |
|
|
* | note db2pickle.py and pickle2db.py | Skip Montanaro | 2003-02-03 | 1 | -0/+2 |
|
|
* | dump database files to pickle format | Skip Montanaro | 2003-02-03 | 1 | -0/+116 |
|
|
* | convert pickles generated by db2pickle.py back to database files | Skip Montanaro | 2003-02-03 | 1 | -0/+127 |
|
|
* | 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 |
|
|
* | add missing "summary" from long options list | Skip Montanaro | 2003-02-03 | 1 | -1/+1 |
|
|
* | * Add description of PyInt_FromString. | Skip Montanaro | 2003-02-03 | 1 | -3/+23 |
|
|
* | version 4.1.4 (4.1.3 just released) | Gregory P. Smith | 2003-02-03 | 1 | -1/+1 |
|
|
* | fix for use on python 2.1 | Gregory P. Smith | 2003-02-03 | 1 | -2/+0 |
|
|
* | Add PyFloat_FromString. Left the char **pend argument out of the | Skip Montanaro | 2003-02-03 | 1 | -0/+5 |
|
|
* | cPickle now implements enough of protocol 2 to enable all | Guido van Rossum | 2003-02-03 | 1 | -3/+3 |
|
|
* | Fix comment typo. | Walter Dörwald | 2003-02-02 | 1 | -1/+1 |
|
|
* | Fix typos. | Walter Dörwald | 2003-02-02 | 1 | -5/+5 |
|
|
* | 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 |
|
|
* | The FSAliasFile routines also have an in/out parameter. | Jack Jansen | 2003-02-02 | 2 | -4/+9 |
|
|
* | cPickle support for TUPLE[123]. Incidentally plugged several undetected | Tim Peters | 2003-02-02 | 3 | -91/+250 |
|
|
* | jeez, now I know why I shouldn't even _want_ to learn sh. | Just van Rossum | 2003-02-02 | 1 | -4/+4 |
|
|
* | Massive edits. If p is a pointer to a struct, and p->f is a pointer to | Tim Peters | 2003-02-02 | 1 | -89/+93 |
|
|
* | Minor cleanup, mostly adding horizontal whitespace, and breaking apart | Tim Peters | 2003-02-02 | 1 | -31/+30 |
|
|
* | Implemented proto 2 NEWTRUE and NEWFALSE in cPickle. | Tim Peters | 2003-02-02 | 2 | -2/+40 |
|
|
* | Get ossaudiodev to compile on freebsd 4.7 | Neal Norwitz | 2003-02-02 | 2 | -1/+20 |
|
|
* | long_from_binary_base(): Sped this a little by computing the # of bits | Tim Peters | 2003-02-02 | 1 | -6/+6 |
|
|
* | Beefed up the tests by putting in more "for proto in protocols:" outer | Tim Peters | 2003-02-02 | 2 | -86/+236 |
|
|
* | Add some notes that got python to work on the snake farm | Neal Norwitz | 2003-02-02 | 1 | -0/+16 |
|
|
* | Fix compiler warning | Neal Norwitz | 2003-02-02 | 2 | -1/+2 |
|
|