- 30 Aug, 2007 18 commits
-
-
Neal Norwitz authored
-
Neal Norwitz authored
-
Neal Norwitz authored
still fails, but gets a little further with this change.
-
Martin v. Löwis authored
-
Neal Norwitz authored
b * sys.maxint # from test_bytes.py line 379 Caused: SystemError: error return without exception set
-
Martin v. Löwis authored
-
Neal Norwitz authored
This will hopefully fix the problem on a Windows buildbot with test_sundry.
-
Martin v. Löwis authored
-
Neal Norwitz authored
-
Collin Winter authored
-
Collin Winter authored
-
Guido van Rossum authored
This should restore the email package in the py3k branch to exactly what's in the sandbox. This wipes out 1-2 fixes made post-copy, which I'll re-apply shortly.
-
Neal Norwitz authored
-
Neal Norwitz authored
when the email package was removed. Email was restored, so restore the tests.
-
Barry Warsaw authored
Use str.encode('raw-unicode-escape') consistently instead of bytes(string). Remove the convert_eols argument from base64mime.decode(). This matches previous API changes done to the quoprimime module.
-
Collin Winter authored
-
Guido van Rossum authored
-
Guido van Rossum authored
-
- 29 Aug, 2007 22 commits
-
-
Guido van Rossum authored
-
Collin Winter authored
-
Guido van Rossum authored
-
Collin Winter authored
-
Collin Winter authored
No commit message
-
Collin Winter authored
No commit message
-
Guido van Rossum authored
clobber" is run. (Thanks Thomas W. for pointing this out!)
-
Guido van Rossum authored
-
Guido van Rossum authored
-
Guido van Rossum authored
Patch # 1050 by Amaury Forgeot d'Arc. On Windows, debug builds insert stack probes, and recursive functions tend to exhaust the stack faster. This patch reduces the marshal maximum depth from 2000 to 1500 for debug builds only. Optimized builds are not affected. This allows test_marshal to pass with debug builds.
-
Guido van Rossum authored
-
Jeremy Hylton authored
-
Jeremy Hylton authored
-
Jeremy Hylton authored
-
Guido van Rossum authored
-
Jeremy Hylton authored
-
Guido van Rossum authored
On Windows, debug builds insert stack probes, and recursive functions tend to exhaust the stack faster. This patch reduces the marshal maximum depth from 2000 to 1500 for debug builds only. Optimized builds are not affected. This allows test_marshal to pass with debug builds.
-
Kurt B. Kaiser authored
2. Fix some debug prints in RemoteDebugger.py - use py3k syntax.
-
Guido van Rossum authored
test_float crashes on Windows, because the %zd format is used in a call to PyOS_snprintf(). The attached patch properly uses PY_FORMAT_SIZE_T.
-
Guido van Rossum authored
1/ getargs.diff adds the 'Z' and 'Z#' format specifiers for PyArg_ParseTuple. They mimic z and z# for unicode strings, by accepting a Unicode or None (in which case the Py_UNICODE* pointer is set to NULL). With doc and tests. 2/ subprocess.diff converts file PC/_subprocess.c to unicode. We use the Unicode version of the win32 api (and Z conversion from previous patch) 3/ stdout.diff: sys.stdout must not convert the line endings, Windows already does it. Without this patch, when redirecting the output of python, the file contains \r\r\n for each line. (test_subprocess did catch this) However, I (GvR) removed the change to _fileio.c (included in the patches) that prevents closing file descripors < 3 from being closed; I think that needs to be solved in a different way.
-
Guido van Rossum authored
so that even on Windows, after s.write("x\n"), s.getvalue() == "x\n".
-
Guido van Rossum authored
-