- 01 Eki, 2015 25 kayıt (commit)
-
-
Victor Stinner yazdı
handlers: ``ignore``, ``replace``, ``surrogateescape``, ``surrogatepass``. Patch co-written with Serhiy Storchaka.
-
Vinay Sajip yazdı
Closes #24884: refactored WatchedFileHandler file reopening into a separate method, based on a suggestion and patch by Marian Horban.
-
Vinay Sajip yazdı
-
Vinay Sajip yazdı
-
Vinay Sajip yazdı
-
Victor Stinner yazdı
try to debug a hang on the FreeBSD 9 buildbot. Run also eintr_tester.py with python "-u" command line option to try to get the full output on hang/crash.
-
Vinay Sajip yazdı
-
Vinay Sajip yazdı
-
Vinay Sajip yazdı
-
Serhiy Storchaka yazdı
longer formatted twice.
-
Serhiy Storchaka yazdı
longer formatted twice.
-
Serhiy Storchaka yazdı
longer formatted twice.
-
Victor Stinner yazdı
-
Victor Stinner yazdı
-
Victor Stinner yazdı
getentropy() is blocking, whereas os.urandom() should not block. getentropy() is supported since Solaris 11.3.
-
Victor Stinner yazdı
-
Victor Stinner yazdı
function instead of the getentropy() function. The getentropy() function is blocking to generate very good quality entropy, os.urandom() doesn't need such high-quality entropy.
-
Victor Stinner yazdı
sys.gettrace() when the test is executed, not when the module is loaded. sys.settrace() may be after after the test is loaded.
-
Victor Stinner yazdı
sys.gettrace() when the test is executed, not when the module is loaded. sys.settrace() may be after after the test is loaded.
-
Victor Stinner yazdı
sys.gettrace() when the test is executed, not when the module is loaded. sys.settrace() may be after after the test is loaded.
-
Andrew Svetlov yazdı
-
Andrew Svetlov yazdı
-
Andrew Svetlov yazdı
-
Victor Stinner yazdı
On the x86 OpenBSD 5.8 buildbot, the integer overflow check is ignored. Copy the tv_sec variable into a Py_time_t variable instead of "simply" casting it to Py_time_t, to fix the integer overflow check.
-
Raymond Hettinger yazdı
-
- 30 Eyl, 2015 15 kayıt (commit)
-
-
Victor Stinner yazdı
Issue #25260: Fix ``python -m test --coverage`` on Windows. Remove the list of ignored directories.
-
Victor Stinner yazdı
OpenBSD", I'm not sure that the change was really needed. I read the test result of an old build because the OpenBSD was 100 builds late.
-
Victor Stinner yazdı
Patch written by Remi Pointel.
-
Victor Stinner yazdı
-
Victor Stinner yazdı
-
Victor Stinner yazdı
Restore also errno value before calling PyErr_SetFromErrno().
-
Serhiy Storchaka yazdı
imported at startup) now uses the backslashreplace error handler.
-
Serhiy Storchaka yazdı
imported at startup) now uses the backslashreplace error handler.
-
Serhiy Storchaka yazdı
imported at startup) now uses the backslashreplace error handler.
-
Victor Stinner yazdı
* Fix "-m test --forever": replace _test_forever() with self._test_forever() * Add unit test for --forever * Add unit test for a failing test * Fix also some pyflakes warnings in libregrtest
-
Raymond Hettinger yazdı
-
Victor Stinner yazdı
When the -jN command line option is used, display tests running since at least 30 seconds every minute.
-
Victor Stinner yazdı
No need to support.verbose in Regrtest.run_tests(), it's always set in runtest().
-
Victor Stinner yazdı
* Remove runtest_ns(): pass directly ns to runtest(). * Create also Regrtest.rerun_failed_tests() method. * Inline again Regrtest.run_test(): it's no more justified to have a method
-
Victor Stinner yazdı
* Rename setup_python() to setup_tests() * Remove use_resources parameter of runtest()
-