- 16 Feb, 2006 14 commits
-
-
Martin v. Löwis authored
-
Martin v. Löwis authored
-
Martin v. Löwis authored
Convert Py_ssize_t using PyInt_FromSsize_t
-
Martin v. Löwis authored
-
Martin v. Löwis authored
-
Martin v. Löwis authored
-
Neal Norwitz authored
-
Neal Norwitz authored
-
Martin v. Löwis authored
-
Martin v. Löwis authored
-
Martin v. Löwis authored
-
Neal Norwitz authored
-
Tim Peters authored
Py_SAFE_DOWNCAST can evaluate its first argument multiple times in a debug build. This caused two distinct assert- failures in test_unicode run under a debug build. Rewrote the code in trivial ways so that multiple evaluation of the first argument doesn't hurt.
-
Tim Peters authored
mixing signed and unsigned types in comparison. Relatedly, `dataSize` is declared as DWORD, not as int, so change relevant cast from (int) to (DWORD).
-
- 15 Feb, 2006 9 commits
-
-
Thomas Wouters authored
-
Thomas Wouters authored
whitespace.
-
Vinay Sajip authored
-
Martin v. Löwis authored
-
Martin v. Löwis authored
-
Martin v. Löwis authored
-
Fred Drake authored
-
Neal Norwitz authored
-
Tim Peters authored
signed with unsigned types in comparison.
-
- 14 Feb, 2006 5 commits
-
-
Martin v. Löwis authored
-
Martin v. Löwis authored
-
Tim Peters authored
test_file to fail on Windows in reality (can't delete a still-open file), but a new bare "except:" hid that test_file failed on Windows, and leaving behind the still-open TESTFN caused a cascade of bogus failures in later tests. So, close the file, and stop hiding failure to unlink.
-
Armin Rigo authored
* Allow the 3rd argument to generator.throw() to be None. The 'raise' statement does the same, and anyway it follows the general policy that optional arguments of built-ins should, when reasonable, have a default value specifiable from Python.
-
Neal Norwitz authored
Support 2.4 (released versions) better. (rsync was not working with adding the *. Only some files/dirs were copied, not everything.)
-
- 13 Feb, 2006 2 commits
-
-
Neal Norwitz authored
-
Neal Norwitz authored
-
- 12 Feb, 2006 1 commit
-
-
Thomas Wouters authored
readline/readlines/read/readinto, loudly break by raising ValueError, rather than silently deliver data out of order or hitting EOF prematurely. Probably not a bugfix candidate, even though it affects no 'working' code.
-
- 11 Feb, 2006 6 commits
-
-
Tim Peters authored
-
Georg Brandl authored
-
Martin v. Löwis authored
-
Georg Brandl authored
-
Martin v. Löwis authored
Proposed by Tim Peters.
- 10 Feb, 2006 3 commits
-
-
Thomas Wouters authored
call_function(), rather than commenting on the lack of an explanation in a comment.
-
Jack Jansen authored
-
Martin v. Löwis authored
-