- 21 Mar, 2004 29 commits
-
-
Nicholas Bastin authored
-
Armin Rigo authored
the newly created tuples, but tuples added in the freelist are now cleared in tupledealloc already (which is very cheap, because we are already Py_XDECREF'ing all elements anyway). Python should have a standard Py_ZAP macro like ZAP in pystate.c.
-
Nicholas Bastin authored
Fixes SF Bug #773356
-
Andrew M. Kuchling authored
-
Andrew M. Kuchling authored
[Part of patch #909005] Repeating exception changed from 'raise socket.error, why' to just raise. Make use of connect_ex() raise socket.error with 2-tuple instead of just error code
-
Andrew M. Kuchling authored
-
Andrew M. Kuchling authored
-
Andrew M. Kuchling authored
-
Hye-Shik Chang authored
(Reported by Matthias Klose)
-
Andrew M. Kuchling authored
-
Andrew M. Kuchling authored
-
Andrew M. Kuchling authored
-
Andrew M. Kuchling authored
-
Andrew M. Kuchling authored
-
Andrew M. Kuchling authored
-
Nicholas Bastin authored
-
Raymond Hettinger authored
-
Tim Peters authored
Removed the entire __name__ == '__main__' block.
-
Raymond Hettinger authored
-
Nicholas Bastin authored
Modified string.split documentation to reflect behaviour of splitting emtpy string. Closes SF bug #811604
-
Tim Peters authored
NULL in case of error, but the functions are declared to return int. MSVC 6 properly complains about that. Return -1 on error instead.
-
Just van Rossum authored
-
Skip Montanaro authored
-
Martin v. Löwis authored
-
Martin v. Löwis authored
-
Neil Schemenauer authored
-
Raymond Hettinger authored
Gives 30% speedup on "a,b=1,2" and 25% on "a,b,c=1,2,3".
-
Brett Cannon authored
automatically.
-
Brett Cannon authored
existent path. Pointed out by jvr that entries could be non-file items for custom importers.
-
- 20 Mar, 2004 11 commits
-
-
Brett Cannon authored
for regex syntax. Fixes bug #883604 .
-
Brett Cannon authored
isinstance() or issubclass() to the recursion limit of the interpreter.
-
Guido van Rossum authored
Change %08l to %p to print a pointer. Will backport to 2.3.
-
Armin Rigo authored
'a.extend(a)' isn't so special anyway.
-
Guido van Rossum authored
I've been bitten by this myself in the past half year. I hope this fix is right. I'll backport this to 2.3.
-
Tim Peters authored
UNTESTED!!! This simple two-line patch has been sitting on SF for more than 2 years. I'm guessing it's because nobody knows how to test it -- I sure don't. It doesn't look like you can get to this part of the code on Unixish or Windows systems, so the "how to test it?" puzzle has more than one part. OTOH, if this is dead code, it doesn't matter either if I just broke it <wink>.
-
Armin Rigo authored
-
Brett Cannon authored
-
Armin Rigo authored
-
Brett Cannon authored
-
Armin Rigo authored
-