- 05 Mar, 2006 6 commits
-
-
Martin v. Löwis authored
Add warning on Win9x.
-
Martin v. Löwis authored
-
Martin v. Löwis authored
-
Martin v. Löwis authored
-
Martin v. Löwis authored
-
Neal Norwitz authored
The failure definitely seems timing related. This change *seems* to work. Since the failure isn't doesn't occur consistently, it's hard to tell. Running these tests on Solaris in this order: test_urllibnet test_operator test_cgi \ test_isinstance test_future test_ast test_logging generally caused a failure (about 50% of the time) before the sleep. I couldn't provoke the failure with the sleep. This should really be cleaned up by using threading.Events or something so it is not timing dependent and doesn't hang forever on failure.
-
- 04 Mar, 2006 15 commits
-
-
Neal Norwitz authored
-
Neal Norwitz authored
-
Neal Norwitz authored
test_codecmaps_tw test_importhooks test_socket_ssl I don't completely understand the cause, but there's a lot of import magic going on and this is the smallest change which fixes the problem.
-
Neal Norwitz authored
-
Neal Norwitz authored
Actually define Py_RefTotal as a Py_ssize_t.
-
Neal Norwitz authored
I tried to handle Win64 properly, but please review.
-
Neal Norwitz authored
-
Neal Norwitz authored
One place it wasn't necessary since mod was already checked. Inline the check that mod != NULL for the other use.
-
Neal Norwitz authored
-
Neal Norwitz authored
-
Neal Norwitz authored
Add note to NEWS.
-
Hye-Shik Chang authored
- Do some minor code clean-ups.
-
Barry Warsaw authored
testing line ending compatibility.
-
Tim Peters authored
for it to claim it has mime-type application/octet-stream.
-
Tim Peters authored
-
- 03 Mar, 2006 11 commits
-
-
Neal Norwitz authored
-
Neal Norwitz authored
want to wait forever if we don't receive the last message. But we also don't want the test to fail if we shutdown too quickly. I can't reliably reproduce this failure, so I'm kinda guessing this is the problem. We'll see if this band-aid helps.
-
Neal Norwitz authored
Add it back.
-
Neal Norwitz authored
-
Neal Norwitz authored
-
Neal Norwitz authored
be removed in 2.x.
-
Thomas Wouters authored
- regenerate ast.py - add future flags for absolute-import and with-statement so they (hopefully) properly get set in code-object flags - try out if/else expressions in actual code for the hell of it. Seems to generate the same kind of bytecode as the normal compiler.
-
Thomas Wouters authored
-
Neal Norwitz authored
-
Neal Norwitz authored
-
Neal Norwitz authored
-
- 02 Mar, 2006 8 commits
-
-
Brett Cannon authored
-
Brett Cannon authored
-
Tim Peters authored
-
Tim Peters authored
-
Tim Peters authored
-
Tim Peters authored
PyArena_New(); unsure what the intent is.
-
Thomas Wouters authored
but without a specified encoding: decoding_fgets() (and decoding_feof()) can return NULL and fiddle with the 'tok' struct, making tok->buf NULL. This is okay in the other cases of calls to decoding_*(), it seems, but not in this one. This should get a test added, somewhere, but the testsuite doesn't seem to test encoding anywhere (although plenty of tests use it.) It seems to me that decoding errors in other places in the code (like at the start of a token, instead of in the middle of one) make the code end up adding small integers to NULL pointers, but happen to check for error states before using the calculated new pointers. I haven't been able to trigger any other crashes, in any case. I would nominate this file for a comlete rewrite for Py3k. The whole decoding trick is too bolted-on for my tastes.
-
Tim Peters authored
-