- 05 Jul, 2011 4 commits
-
-
Victor Stinner authored
-
Benjamin Peterson authored
-
Ned Deily authored
tests.
-
Ned Deily authored
testcase failure in test_ssl.
-
- 04 Jul, 2011 15 commits
-
-
Senthil Kumaran authored
-
Senthil Kumaran authored
issue10403 - Let's not use members anymore. Use 'attribute' where it denotes attribute and 'methods' where it denotes methods. Context should clarify usage.
-
Georg Brandl authored
-
Victor Stinner authored
fresh process with only one thread and to not change signal handling of the parent process.
-
Victor Stinner authored
On FreeBSD, the SIGALRM signal is sometimes received by the reader thread.
-
Ned Deily authored
test_tk or test_ttk_guionly under a username that is not currently logged in to the console windowserver (as may be the case under buildbot or ssh).
-
Senthil Kumaran authored
-
Benjamin Peterson authored
-
Senthil Kumaran authored
-
Victor Stinner authored
shutdown, if globals()['__file__'] is None.
-
Georg Brandl authored
-
Victor Stinner authored
shutdown, if globals()['__file__'] is None.
-
Senthil Kumaran authored
-
Senthil Kumaran authored
-
Victor Stinner authored
instead of text mode using the locale encoding, to avoid encoding issues.
-
- 03 Jul, 2011 15 commits
-
-
Victor Stinner authored
instead of text mode using the locale encoding, to support other encodings than UTF-8 (scripts using the coding cookie).
-
Victor Stinner authored
of the text mode (using the locale encoding) to avoid encoding issues.
-
Benjamin Peterson authored
This requires some trickery to properly save the exception state if the generator creates its own exception state.
-
Benjamin Peterson authored
-
Benjamin Peterson authored
-
Benjamin Peterson authored
This prevents generator exception state from leaking into the caller. Closes #12475.
-
Benjamin Peterson authored
-
Senthil Kumaran authored
-
Georg Brandl authored
-
Georg Brandl authored
-
Georg Brandl authored
-
Georg Brandl authored
-
Georg Brandl authored
-
Georg Brandl authored
-
Georg Brandl authored
-
- 02 Jul, 2011 2 commits
-
-
Charles-François Natali authored
freed by the garbage collector while the Heap lock is held.
-
Charles-François Natali authored
the garbage collector while the Heap lock is held.
-
- 01 Jul, 2011 4 commits
-
-
R David Murray authored
-
R David Murray authored
-
Victor Stinner authored
Move also the "ready" trigger after the installation of the signal handler and the call to siginterrupt(). Use a timeout of 5 seconds instead of 3. Two seconds are supposed to be enough, but some of our buildbots are really slow (especially the FreeBSD 6 VM).
-
Victor Stinner authored
Backport commits 968b9ff9a059 and aff0a7b0cb12 from the default branch to 3.2 branch. Extract of the changelog messages: "The previous tests used time.sleep() to synchronize two processes. If the host was too slow, the test could fail. The new tests only use one process, but they use a subprocess to: - have only one thread - have a timeout on the blocking read (select cannot be used in the test, select always fail with EINTR, the kernel doesn't restart it) - not touch signal handling of the parent process" and "Add a basic synchronization code between the child and the parent processes: the child writes "ready" to stdout." I replaced .communicate(timeout=3.0) by an explicit waiting loop using Popen.poll().
-