- 07 Mar, 2006 21 commits
-
-
Martin v. Löwis authored
-
Tim Peters authored
an error code, this let `self` leak. This is a disaster on Windows, since `self` already points to a newly-opened file object, and it was impossible for Python code to close the thing since the only reference to it was in a blob of leaked C memory. test_hotshot test_bad_sys_path(): This new test provoked the C bug above. This test passed, but left an open "@test" file behind, which caused a massive cascade of bogus test failures in later, unrelated tests on Windows. Changed the test code to remove the @test file it leaves behind, which relies on the change above to close that file first.
-
Georg Brandl authored
-
Andrew M. Kuchling authored
-
Guido van Rossum authored
-
Guido van Rossum authored
This was mostly written by Travis Oliphant. I've inspected it all; Neal Norwitz and MvL have also looked at it (in an earlier incarnation).
-
Guido van Rossum authored
but an earlier line checked for v != NULL unnecessarily.
-
Andrew M. Kuchling authored
-
Hye-Shik Chang authored
(reviewed by Neal Norwitz)
-
Georg Brandl authored
Normalize coding style.
-
Thomas Wouters authored
-
Thomas Wouters authored
Will backport.
-
Thomas Wouters authored
Will backport to release24.
-
Georg Brandl authored
-
Thomas Wouters authored
return rather than use it again.
-
Georg Brandl authored
readdir().
-
Martin v. Löwis authored
Add (int) casts to silence compiler warnings. Raise Python exceptions for overflows.
-
Thomas Wouters authored
-
Barry Warsaw authored
added to gc.collect(). Updated docs, unit test, and NEWS entry. (Also, fixed a typo in NEWS.)
-
Neal Norwitz authored
-
Neal Norwitz authored
All of these (except _lsprof.c) should be backported. Particularly the hotshot change which validates sys.path. Can someone backport?
-
- 06 Mar, 2006 8 commits
-
-
Neal Norwitz authored
-
Neal Norwitz authored
-
Neal Norwitz authored
from static analysis. v was already checked for NULL above, so we don't need a second check.
-
Neal Norwitz authored
-
Walter Dörwald authored
This is a alternative version of patch #1379332.
-
Martin v. Löwis authored
-
Martin v. Löwis authored
-
Hye-Shik Chang authored
-
- 05 Mar, 2006 8 commits
-
-
Martin v. Löwis authored
-
Martin v. Löwis authored
-
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 3 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.
-