- 22 Mar, 2004 1 kayıt (commit)
-
-
Anthony Baxter yazdı
-
- 21 Mar, 2004 35 kayıt (commit)
-
-
Nicholas Bastin yazdı
Fixes SF Bug #850981
-
Tim Peters yazdı
It's possible to create insane datetime objects by using the constructor "backdoor" inserted for fast unpickling. Doing extensive range checking would eliminate the backdoor's purpose (speed), but at least a little checking can stop honest mistakes. Bugfix candidate.
-
Armin Rigo yazdı
-
Brett Cannon yazdı
when keep_blank_values is true.
-
Andrew M. Kuchling yazdı
-
Tim Peters yazdı
off a new compiler wng under MSVC6).
-
Nicholas Bastin yazdı
-
Armin Rigo yazdı
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 yazdı
Fixes SF Bug #773356
-
Andrew M. Kuchling yazdı
-
Andrew M. Kuchling yazdı
[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 yazdı
-
Andrew M. Kuchling yazdı
-
Andrew M. Kuchling yazdı
-
Hye-Shik Chang yazdı
(Reported by Matthias Klose)
-
Andrew M. Kuchling yazdı
-
Andrew M. Kuchling yazdı
-
Andrew M. Kuchling yazdı
-
Andrew M. Kuchling yazdı
-
Andrew M. Kuchling yazdı
-
Andrew M. Kuchling yazdı
-
Nicholas Bastin yazdı
-
Raymond Hettinger yazdı
-
Tim Peters yazdı
Removed the entire __name__ == '__main__' block.
-
Raymond Hettinger yazdı
-
Nicholas Bastin yazdı
Modified string.split documentation to reflect behaviour of splitting emtpy string. Closes SF bug #811604
-
Tim Peters yazdı
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 yazdı
-
Skip Montanaro yazdı
-
Martin v. Löwis yazdı
-
Martin v. Löwis yazdı
-
Neil Schemenauer yazdı
-
Raymond Hettinger yazdı
Gives 30% speedup on "a,b=1,2" and 25% on "a,b,c=1,2,3".
-
Brett Cannon yazdı
automatically.
-
Brett Cannon yazdı
existent path. Pointed out by jvr that entries could be non-file items for custom importers.
-
- 20 Mar, 2004 4 kayıt (commit)
-
-
Brett Cannon yazdı
for regex syntax. Fixes bug #883604 .
-
Brett Cannon yazdı
isinstance() or issubclass() to the recursion limit of the interpreter.
-
Guido van Rossum yazdı
Change %08l to %p to print a pointer. Will backport to 2.3.
-
Armin Rigo yazdı
'a.extend(a)' isn't so special anyway.
-