- 23 Mar, 2006 9 kayıt (commit)
-
-
Anthony Baxter yazdı
-
Anthony Baxter yazdı
-
Anthony Baxter yazdı
-
Anthony Baxter yazdı
-
Anthony Baxter yazdı
-
Anthony Baxter yazdı
-
Anthony Baxter yazdı
-
Anthony Baxter yazdı
-
Anthony Baxter yazdı
-
- 22 Mar, 2006 2 kayıt (commit)
-
-
Martin v. Löwis yazdı
containing an encoding declaration is compile()d. Fixes #1115379.
-
Anthony Baxter yazdı
-
- 20 Mar, 2006 5 kayıt (commit)
-
-
Armin Rigo yazdı
introduction of C calls profiling events.
-
Vinay Sajip yazdı
Catch situations where currentframe() returns None. See SF patch #1447410, this is a different implementation.
-
Tim Peters yazdı
used by encoding tests. Fiddled the Windows buildbot helper scripts to invoke this if needed. Note that this isn't needed on the trunk (the encoding tests download input files automatically in 2.5).
-
Tim Peters yazdı
patch from the trunk. This stops test_socket_ssl from dying with: TypeError: 'NoneType' object is not callable in urlparsre.py's urljoin() when the tests are run in this order: test_??? test_importhooks test_socket_ssl "test_???" can be various things, but must be there. For example, test_urllibnet "works" to provoke the failure. Alas, nobody actually understands _why_ test_socket_ssl fails then, or why this hack makes the problem go away. Amazingly, the tests just happened to run in the right order on the 2.4 branch on two Windows buildbot slaves today, causing them both to fail their most recent test runs before this patch.
-
Neal Norwitz yazdı
Fix problem spotted by Coverity that occurs if tzinfo.tzname().replace() returns a non-string when converting %Z.
-
- 19 Mar, 2006 1 kayıt (commit)
-
-
Kurt B. Kaiser yazdı
kills GUI. Report from Bruce Sherwood.
-
- 18 Mar, 2006 1 kayıt (commit)
-
-
Tim Peters yazdı
""" Try to find a host that responds slower from python.org so this test does not fail on macteagle (G4 OSX.4 in buildbot) """ Since testConnectTimeout() frequently fails in the same way in 2.4 branch, and this patch seems to have fixed it on the trunk, it should fix it on the 2.4 branch too.
-
- 17 Mar, 2006 1 kayıt (commit)
-
-
Georg Brandl yazdı
-
- 16 Mar, 2006 4 kayıt (commit)
-
-
Tim Peters yazdı
Set eol-style to native.
-
Tim Peters yazdı
on a box without a sound card. Update test_winsound to check for a configured sound card (using a VBScript helper written by Roger Upole and Mark Hammond) and adjust the expected PlaySoundTest case results accordingly.
-
Tim Peters yazdı
Oops! Use python_d.exe _before_ it's destroyed :-)
-
Tim Peters yazdı
Change the Windows buildbot "clean" step to remove stale .pyc files.
-
- 15 Mar, 2006 1 kayıt (commit)
-
-
Neal Norwitz yazdı
Move test code out of xxmodule and into _testcapimodule.c where it belongs.
-
- 14 Mar, 2006 2 kayıt (commit)
-
-
Neal Norwitz yazdı
Try to be a bit more consistent on all platforms: python . python < . both print a message, return non-zero and do not core dump. This hopefully fixes the failure on Solaris.
-
Neal Norwitz yazdı
Fix and test (manually w/xx module) passing NULLs to PyObject_Str() and PyObject_Unicode(). This problem was originally reported from Coverity and addresses mail on python-dev "checkin r43015". This inlines the conversion of the string to unicode and cleans up/simplifies some code at the end of the PyObject_Unicode(). We really need a complete C API test module for all public APIs and passing good and bad parameter values.
-
- 13 Mar, 2006 7 kayıt (commit)
-
-
Georg Brandl yazdı
(backport from rev. 43014)
-
Martin v. Löwis yazdı
Let the buildbot make a single pass in the test suite only.
-
Martin v. Löwis yazdı
Update to bzip2 1.0.3 Make buildbot slaves automatically fetch bzip2 1.0.3.
-
Hye-Shik Chang yazdı
Bug #1448490: Fixed a bug that ISO-2022 codecs could not handle SS2 (single-shift 2) escape sequences correctly.
-
Tim Peters yazdı
When the new -w option (yay! great idea) reruns a failed test, first display the name of the test (else it's not always clear from the output which test is getting run).
-
Tim Peters yazdı
test_main(): Restore the original root logger level after running the tests. This stops the confusing/annoying: No handlers could be found for logger "cookielib" message we got whenever some test running after test_logging happened to use cookielib.py (when not using regrtest's -r, this happened during test_urllib2; when using -r, it varied).
-
Tim Peters yazdı
Adding the /useenv means that one's PATH actually gets through. This is important for the _ssl.vproj build. It calls build_ssl.py which tries to find a Perl to use. Without "/useenv" Visual Studio is getting a PATH from somewhere else (presumably from its internal environment configuration). The result is that build_ssl.py fallsback to its "well-known" locations for a Perl install.
-
- 12 Mar, 2006 5 kayıt (commit)
-
-
Martin v. Löwis yazdı
-
Tim Peters yazdı
so the buildbot's "clean" step doesn't fail due to _ssl whining that it can't spawn an empty string.
-
Tim Peters yazdı
-
Tim Peters yazdı
-
Tim Peters yazdı
-
- 11 Mar, 2006 1 kayıt (commit)
-
-
Tim Peters yazdı
_hotshot hotshot_profiler(): If write_header() returned 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.
-
- 10 Mar, 2006 1 kayıt (commit)
-
-
Martin v. Löwis yazdı
-