- 13 Feb, 2003 17 commits
-
-
Tim Peters authored
and loading them via the other, except for the special cases of this Guido added to test_datetime.py for datetime module objects. The new test_xpickle.py tries all of pickletester's AbstractPickleTests in both x-module ways.
-
Guido van Rossum authored
Curious: Str didn't need me to put something in tp_new, but Null did. Why the difference?
-
Tim Peters authored
test for now (cPickle can't yet produce NEWOBJ).
-
Andrew M. Kuchling authored
-
Skip Montanaro authored
reference manual
-
Tim Peters authored
exercised by the test suite before cPickle knows how to create NEWOBJ too. For now, it was just tried once by hand (via loading a NEWOBJ pickle created by pickle.py).
-
Walter Dörwald authored
coverage. From SF patch #662807
-
Guido van Rossum authored
This changes the default __new__ to refuse arguments iff tp_init is the default __init__ implementation -- thus making it a TypeError when you try to pass arguments to a constructor if the class doesn't override at least __init__ or __new__.
-
Guido van Rossum authored
-
Tim Peters authored
-
Andrew M. Kuchling authored
-
Mark Hammond authored
on a release 'python.exe' for a debug build of _ssl. It may happen that Python.exe is currently broken, and we are trying to rebuild from scratch.
-
Tim Peters authored
!HAVE_INET_ATON case. Repaired that, and tried to repair what looked like out-of-date comments.
-
Neal Norwitz authored
Needs review.
-
Neal Norwitz authored
-
Neal Norwitz authored
-
Neal Norwitz authored
-
- 12 Feb, 2003 23 commits
-
-
Walter Dörwald authored
-
Neal Norwitz authored
-
Guido van Rossum authored
inet_aton() rather than inet_addr() -- the latter is obsolete because it has a problem: "255.255.255.255" is a valid address but indistinguishable from an error. (I'm not sure if inet_aton() exists everywhere -- in case it doesn't, I've left the old code in with an #ifdef.)
-
Neal Norwitz authored
Add missing INCREFs and re-indent returns to be consistent. Add \n\ for lines in docstring Add a pathetic test Add docs
-
Guido van Rossum authored
mostly from SF patch #683257, but I had to change unlock_import() to return an error value to avoid fatal error. Should this be backported? The patch requested this, but it's a new feature.
-
Guido van Rossum authored
folded; this will change in Python 2.4. On a 32-bit machine, this happens for 0x80000000 through 0xffffffff, and for octal constants in the same value range. No warning is issued if an explicit base is given, *or* if the string contains a sign (since in those cases no sign folding ever happens).
-
Guido van Rossum authored
Volunteers wanted to fix it!)
-
Guido van Rossum authored
-
Guido van Rossum authored
"Unsigned" (i.e., positive-looking, but really negative) hex/oct constants with a leading minus sign are once again properly negated. The micro-optimization for negated numeric constants did the wrong thing for such hex/oct constants. The patch avoids the optimization for all hex/oct constants. This needs to be backported to Python 2.2!
-
Guido van Rossum authored
"Unsigned" (i.e., positive-looking, but really negative) hex/oct constants with a leading minus sign are once again properly negated. The micro-optimization for negated numeric constants did the wrong thing for such hex/oct constants. The patch avoids the optimization for all hex/oct constants. This needs to be backported to Python 2.2!
-
Jack Jansen authored
- Fixed a bug for packages without MD5 checksum.
-
Jack Jansen authored
-
Just van Rossum authored
-
Jack Jansen authored
-
Jack Jansen authored
-
Jack Jansen authored
-
Jack Jansen authored
-
Jack Jansen authored
temporary location. This is needed to makethings work with the new buildtools based on bundlebuilder.
-
Jack Jansen authored
-
Jack Jansen authored
- Catch stderr as well as stdout - Fixed a bug with non-installable packages - Parse .pth files after installing, so you don't have to restart Python (or the IDE) after installing.
-
Jack Jansen authored
implementation and integrated it into the IDE.
-
Jack Jansen authored
-
Jack Jansen authored
-