- 22 Mar, 2004 12 commits
-
-
Martin v. Löwis authored
-
Fred Drake authored
-
Armin Rigo authored
-
Nicholas Bastin authored
-
Armin Rigo authored
single-line loops.
-
Armin Rigo authored
-
Nicholas Bastin authored
-
Nicholas Bastin authored
-
Nicholas Bastin authored
-
Armin Rigo authored
def f(a): if a: print 5 else: pass
-
Hye-Shik Chang authored
This fixes a problem that math.sqrt(-1) doesn't raise math.error.
-
Anthony Baxter authored
-
- 21 Mar, 2004 28 commits
-
-
Nicholas Bastin authored
Fixes SF Bug #850981
-
Tim Peters authored
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 authored
-
Brett Cannon authored
when keep_blank_values is true.
-
Andrew M. Kuchling authored
-
Tim Peters authored
off a new compiler wng under MSVC6).
-
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
-