| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Issue #11049: adding some tests to test.support | Eli Bendersky | 2011-07-23 | 1 | -10/+11 |
| | | | | | Based on original patch by Giampaolo Rodola with contributions from R. David Murray | ||||
| * | Merge from 3.2 | Antoine Pitrou | 2011-07-15 | 1 | -6/+13 |
| |\ | |||||
| | * | Try harder to reap dangling threads in test.support.reap_threads(). | Antoine Pitrou | 2011-07-15 | 1 | -6/+13 |
| | | | |||||
| * | | Always use repr for regrtest resources names | Éric Araujo | 2011-07-15 | 1 | -3/+3 |
| | | | |||||
| * | | add a contextmanager to disable the gc | Benjamin Peterson | 2011-07-14 | 1 | -0/+10 |
| | | | |||||
| * | | Skip network tests when getaddrinfo() returns EAI_AGAIN, meaning a temporary | Antoine Pitrou | 2011-07-09 | 1 | -0/+1 |
| |\ \ | |/ | | | | | | | | | failure in name resolution. Should fix a buildbot failure. | ||||
| | * | Skip network tests when getaddrinfo() returns EAI_AGAIN, meaning a temporary | Antoine Pitrou | 2011-07-09 | 1 | -0/+1 |
| | | | | | | | | | | | | | failure in name resolution. Should fix a buildbot failure. | ||||
| * | | Issue #12451: Add support.create_empty_file() | Victor Stinner | 2011-06-30 | 1 | -1/+6 |
| | | | | | | | | | | | | | | | We don't need to create a temporary buffered binary or text file object just to create an empty file. Replace also os.fdopen(handle).close() by os.close(handle). | ||||
| * | | Issue #12400: test.support.run_doctest() doesn't change sys.stdout anymore | Victor Stinner | 2011-06-29 | 1 | -10/+3 |
| |\ \ | |/ | | | | | | | | | | | regrtest doesn't check that tests doesn't write something to stdout anymore. Don't replace sys.stdout by the original sys.stdout to be able to capture the output for regrtest -W. | ||||
| | * | Issue #12400: test.support.run_doctest() doesn't change sys.stdout anymore | Victor Stinner | 2011-06-29 | 1 | -10/+3 |
| | | | | | | | | | | | | | | | regrtest doesn't check that tests doesn't write something to stdout anymore. Don't replace sys.stdout by the original sys.stdout to be able to capture the output for regrtest -W. | ||||
| | * | branch merge? | Brian Curtin | 2011-06-13 | 1 | -1/+4 |
| | |\ | |||||
| * | \ | branch merge | Brian Curtin | 2011-06-13 | 1 | -1/+1 |
| |\ \ \ | |||||
| | * \ \ | Merge from 3.2 for Issue #12084. | Brian Curtin | 2011-06-13 | 1 | -1/+1 |
| | |\ \ \ | | |/ / | |||||
| | | * | | Fix #12084. os.stat on Windows wasn't working properly with relative symlinks. | Brian Curtin | 2011-06-13 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Use of DeviceIoControl to obtain the symlink path via the reparse tag was removed. The code now uses GetFinalPathNameByHandle in the case of a symbolic link and works properly given the added test which creates a symbolic link and calls os.stat on it from multiple locations. Victor Stinner also noticed an issue with os.lstat following the os.stat code path when being passed bytes. The posix_lstat function was adjusted to properly hook up win32_lstat instead of the previous STAT macro (win32_stat). | ||||
| * | | | | (Merge 3.2) test.support: don't catch OSError when can_symlink() removes the | Victor Stinner | 2011-06-07 | 1 | -1/+2 |
| |\ \ \ \ | |/ / / |/| | / | | |/ | |/| | temporary symbolic link. | ||||
| | * | | test.support: can_symlink() removes the temporary symbolic link | Victor Stinner | 2011-06-07 | 1 | -1/+4 |
| | |/ | |||||
| * | | Issue #12196: Make test.support's requires_linux_version a decorator. | Charles-François Natali | 2011-06-03 | 1 | -9/+28 |
| | | | |||||
| * | | (Merge 3.2) Close #12230: Mac OS X Tiger (10.4) has a kernel bug: sometimes, | Victor Stinner | 2011-06-01 | 1 | -15/+24 |
| |\ \ | |/ | | | | | | | | | | | | | | | the file descriptor of a pipe closed in the parent process is valid in the child process according to fstat(), but the mode of the file descriptor is invalid, and read or write raise an error. test.support.requires_mac_ver() is now a decorator, as suggested by Ezio Melotti, and its docstring is fixed (linux_version => mac_ver). | ||||
| | * | Close #12230: Mac OS X Tiger (10.4) has a kernel bug: sometimes, the file | Victor Stinner | 2011-06-01 | 1 | -1/+29 |
| | | | | | | | | | | | | | | | | | descriptor of a pipe closed in the parent process is valid in the child process according to fstat(), but the mode of the file descriptor is invalid, and read or write raise an error. Add also requires_mac_ver() decorator to test.support. | ||||
| * | | test.support: add requires_mac_ver() function | Victor Stinner | 2011-06-01 | 1 | -1/+21 |
| | | | | | | | | | Add also linux_version() to __all__. | ||||
| * | | Issue #12196: Add PIPE_MAX_SIZE to test.support, constant larger than the | Charles-François Natali | 2011-05-29 | 1 | -1/+8 |
| | | | | | | | | | underlying OS pipe buffer size. | ||||
| * | | Issue #12158: Move linux_version() from test_socket to test.support | Victor Stinner | 2011-05-23 | 1 | -0/+8 |
| | | | |||||
| * | | Skip tests that require zlib in the packaging tests. Also add a ↵ | Ezio Melotti | 2011-05-19 | 1 | -1/+8 |
| | | | | | | | | | requires_zlib decorator to test.support. | ||||
| * | | Merge with 3.2 and also remove captured_output from __all__ (see #7960). | Ezio Melotti | 2011-05-14 | 1 | -3/+4 |
| |\ \ | |/ | |||||
| | * | Update __all__ and docstring. | Ezio Melotti | 2011-05-14 | 1 | -1/+3 |
| | | | |||||
| * | | #7960: merge with 3.2. | Ezio Melotti | 2011-05-14 | 1 | -8/+8 |
| |\ \ | |/ | |||||
| | * | #7960: merge with 3.1. | Ezio Melotti | 2011-05-14 | 1 | -8/+8 |
| | |\ | |||||
| | | * | #7960: fix docstrings for captured_output and captured_stdout. | Ezio Melotti | 2011-05-14 | 1 | -8/+8 |
| | | | | |||||
| | | * | #5723: Improve json tests to be executed with and without accelerations. | Ezio Melotti | 2011-05-14 | 1 | -2/+2 |
| | | | | |||||
| * | | | #5723: merge with 3.2. | Ezio Melotti | 2011-05-14 | 1 | -2/+2 |
| |\ \ \ | |/ / | |||||
| | * | | #5723: merge with 3.1. | Ezio Melotti | 2011-05-14 | 1 | -2/+2 |
| | | | | |||||
| * | | | Merge with 3.2. | Ezio Melotti | 2011-05-14 | 1 | -10/+6 |
| |\ \ \ | |/ / | |||||
| | * | | Merge with 3.1. | Ezio Melotti | 2011-05-14 | 1 | -10/+6 |
| | |\ \ | | |/ | |||||
| | | * | Change import_fresh_module to work with packages. | Ezio Melotti | 2011-05-14 | 1 | -10/+6 |
| | | | | |||||
| * | | | #11910: merge with 3.2. | Ezio Melotti | 2011-05-09 | 1 | -4/+8 |
| |\ \ \ | |/ / | |||||
| | * | | #11910: merge with 3.1. | Ezio Melotti | 2011-05-09 | 1 | -4/+8 |
| | |\ \ | | |/ | |||||
| | | * | #11910: change import_fresh_module to return None when one of the "fresh" ↵ | Ezio Melotti | 2011-05-09 | 1 | -4/+8 |
| | | | | | | | | | | | | | modules can not be imported. | ||||
| * | | | merge 3.2 | Benjamin Peterson | 2011-05-08 | 1 | -2/+3 |
| |\ \ \ | |/ / | |||||
| | * | | merge 3.1 | Benjamin Peterson | 2011-05-08 | 1 | -2/+3 |
| | |\ \ | | |/ | |||||
| | | * | put import_fresh_module in __all__ | Benjamin Peterson | 2011-05-08 | 1 | -0/+1 |
| | | | | |||||
| * | | | Add WSANO_DATA to possible errors triggered by getaddrinfo (Windows) | Antoine Pitrou | 2011-04-28 | 1 | -0/+2 |
| |\ \ \ | |/ / | |||||
| | * | | Add WSANO_DATA to possible errors triggered by getaddrinfo (Windows) | Antoine Pitrou | 2011-04-28 | 1 | -0/+2 |
| | | | | |||||
| * | | | Issue #11811: Factor out detection of IPv6 support on the current host | Antoine Pitrou | 2011-04-28 | 1 | -8/+22 |
| | | | | | | | | | | | | | | | | and make it available as `test.support.IPV6_ENABLED`. Patch by Charles-François Natali. | ||||
| * | | | Revert the Lib/test/test_bigmem.py changes from commit 17891566a478 (and a | Thomas Wouters | 2011-03-25 | 1 | -0/+5 |
| | | | | | | | | | | | | | | | | few other assertEqual tests that snuck in), and expand the docstrings and comments explaining why and how these tests are supposed to work. | ||||
| * | | | Fix transmitting warning options to the children when running tests in | Antoine Pitrou | 2011-03-23 | 1 | -3/+2 |
| | | | | | | | | | | | | | parallel (thanks Michael for pointing this). | ||||
| * | | | Don't leave around a test symlink file. | Brett Cannon | 2011-03-15 | 1 | -1/+3 |
| | | | | |||||
| * | | | Merge | Antoine Pitrou | 2011-03-15 | 1 | -1/+4 |
| |\ \ \ | |||||
| | * | | | Add warnings support to test.support.args_from_interpreter_flags(). | Brett Cannon | 2011-03-15 | 1 | -1/+4 |
| | | | | | | | | | | | | | | | | | | | | | This allows the -j flag to regrtest to propagate warnings settings properly. | ||||
| * | | | | Merge fix for issue #11501 | Antoine Pitrou | 2011-03-15 | 1 | -0/+33 |
| |\ \ \ \ | |/ / / |/| / / | |/ / | |||||
| | * | | Merge fix for issue #11501 | Antoine Pitrou | 2011-03-15 | 1 | -0/+33 |
| | |\ \ | | |/ | |||||
