| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
| |
Patch by Christie Wilson.
|
|\
| |
| |
| |
| |
| | |
while it is holding a lock to a buffered I/O object, and the main thread
tries to use the same I/O object (typically stdout or stderr). A fatal
error is emitted instead.
|
| |
| |
| |
| |
| |
| | |
while it is holding a lock to a buffered I/O object, and the main thread
tries to use the same I/O object (typically stdout or stderr). A fatal
error is emitted instead.
|
| | |
|
| | |
|
|\ \
| |/
| |
| |
| | |
pass -I or -E to the child process by default when the environment is required
for the child process interpreter to function properly.
|
| |
| |
| |
| |
| | |
pass -I or -E to the child process by default when the environment is required
for the child process interpreter to function properly.
|
|\ \
| |/
| |
| |
| |
| |
| |
| | |
interpreter under test is being run in an environment that requires the use of
environment variables such as PYTHONHOME in order to function at all.
Adds a test.script_helper.interpreter_requires_environment() function
to be used with @unittest.skipIf on stdlib test methods requiring this.
|
|/
|
|
|
|
|
|
| |
interpreter under test is being run in an environment that requires the use of
environment variables such as PYTHONHOME in order to function at all.
Adds a private test.script_helper._interpreter_requires_environment() function
to be used with @unittest.skipIf on stdlib test methods requiring this.
|
|
Python subprocess failure assertion error messages for easier debugging.
Adds a unittest for test.script_helper to confirm that this code works as
it is otherwise uncovered by an already passing test suite that uses it. :)
|