| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | #11732: merge with 3.3. | Ezio Melotti | 2013-03-07 | 1 | -1/+3 |
| |\ | |||||
| | * | #11732: make suppress_crash_popup() work on Windows XP and Windows Server 2003. | Ezio Melotti | 2013-03-07 | 1 | -1/+3 |
| | | | |||||
| * | | #11732: merge with 3.3. | Ezio Melotti | 2013-03-05 | 1 | -1/+23 |
| |\ \ | |/ | |||||
| | * | #11732: add a new suppress_crash_popup() context manager to test.support. | Ezio Melotti | 2013-03-05 | 1 | -1/+23 |
| | | | |||||
| * | | modernize some modules' code by replacing ↵ | Giampaolo Rodola' | 2013-02-12 | 1 | -11/+6 |
| | | | | | | | | | OSError->ENOENT/ENOTDIR/EPERM/EEXIST occurrences with the corresponding pep-3151 exceptions (FileNotFoundError, NotADirectoryError, etc.) | ||||
| * | | Issue #17041: Fix testing when Python is configured with the | Serhiy Storchaka | 2013-01-27 | 1 | -4/+10 |
| |\ \ | |/ | | | | | --without-doc-strings. | ||||
| | * | Issue #17041: Fix testing when Python is configured with the | Serhiy Storchaka | 2013-01-27 | 1 | -4/+10 |
| | |\ | | | | | | | | | | --without-doc-strings. | ||||
| | | * | Issue #17041: Fix testing when Python is configured with the | Serhiy Storchaka | 2013-01-27 | 1 | -0/+10 |
| | | | | | | | | | | | | | --without-doc-strings. | ||||
| * | | | Merge 3.3. | Stefan Krah | 2013-01-26 | 1 | -0/+4 |
| |\ \ \ | |/ / | |||||
| | * | | Adapt test_bytes for a build --without-doc-strings. | Stefan Krah | 2013-01-26 | 1 | -0/+4 |
| | | | | |||||
| | * | | (Merge 3.2) Issue #16218, #16414, #16444: Backport FS_NONASCII, | Victor Stinner | 2013-01-03 | 1 | -0/+3 |
| | |\ \ | | |/ | | | | | | | | | | TESTFN_UNDECODABLE, TESTFN_NONASCII of test.support from Python 3.4. Backport tests on non-ASCII paths. | ||||
| | | * | Issue #16218, #16414, #16444: Backport FS_NONASCII, TESTFN_UNDECODABLE, | Victor Stinner | 2013-01-03 | 1 | -0/+78 |
| | | | | | | | | | | | | | | | | TESTFN_NONASCII of test.support from Python 3.4. Backport tests on non-ASCII paths. | ||||
| | * | | Issue #16218, #16444: Backport improvment on tests for non-ASCII characters | Victor Stinner | 2012-11-12 | 1 | -0/+75 |
| | | | | |||||
| * | | | Replace IOError with OSError (#16715) | Andrew Svetlov | 2012-12-25 | 1 | -6/+6 |
| | | | | |||||
| * | | | Issue #16717: get rid of socket.error, replace with OSError | Andrew Svetlov | 2012-12-18 | 1 | -3/+3 |
| | | | | |||||
| * | | | Issue #13390: New function :func:`sys.getallocatedblocks()` returns the ↵ | Antoine Pitrou | 2012-12-09 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | | number of memory blocks currently allocated. Also, the ``-R`` option to regrtest uses this function to guard against memory allocation leaks. | ||||
| * | | | Issue #16444: test more bytes in support.TESTFN_UNDECODABLE to support more ↵ | Victor Stinner | 2012-12-04 | 1 | -0/+3 |
| | | | | | | | | | | | | | Windows code pages | ||||
| * | | | Issue #10966: Remove the concept of unexpected skipped tests. | Brett Cannon | 2012-11-18 | 1 | -4/+11 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The concept of what was unexpected was typically defined as "some depencendy wasn't installed", which isn't unexpected at all as it's totally optional. Since it confuses new contributors as they think something is wrong with their installation it seems sensible to get rid of the concept. This change also adds the concept of optional tests that are required to work on a specific platform(s) (e.g. test_winreg on Windows). This should help catch compile issues instead of a test being blindly skipped even when it should have run. The skipped test list in the future can also print out the reason for being skipped to make it more obvious as to why the skipping occurred. | ||||
| * | | | Issue #16444, #16218: Use TESTFN_UNDECODABLE on UNIX | Victor Stinner | 2012-11-10 | 1 | -8/+20 |
| | | | | | | | | | | | | | | | | | | | | | | | | | Check if data is decoded by os.fsdecode() (filesystem encoding with surrogateescape error handler, PEP 383), not by UTF-8 or the filesystem encoding in strict mode. Use TESTFN_UNDECODABLE in test_cmd_line_script.test_non_ascii() on UNIX. | ||||
| * | | | Issue #16414: Test more characters for support.FS_NONASCII | Victor Stinner | 2012-11-06 | 1 | -9/+26 |
| | | | | | | | | | | | | | | | | It should increase the probability of finding a non-ASCII character on any locale encoding. | ||||
| * | | | Issue #16414: Fix typo in support.TESTFN_NONASCII (useless space) | Victor Stinner | 2012-11-06 | 1 | -1/+1 |
| | | | | |||||
| * | | | Issue #16414: Fix support.TESTFN_UNDECODABLE and ↵ | Victor Stinner | 2012-11-06 | 1 | -1/+5 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | test_genericpath.test_nonascii_abspath() * support.TESTFN_UNDECODABLE was decodable if the filesystem encoding was cp932 * test_genericpath.test_nonascii_abspath() didn't work on Windows if the path was not decodable (ex: with cp932) | ||||
| * | | | Issue #16414: Add support.FS_NONASCII and support.TESTFN_NONASCII | Victor Stinner | 2012-11-06 | 1 | -0/+31 |
| | | | | | | | | | | | | | | | | These constants are used to test functions with non-ASCII data, especially filenames. | ||||
| * | | | Issue #15478: Fix again to fix test_os on Windows | Victor Stinner | 2012-10-31 | 1 | -1/+1 |
| | | | | |||||
| * | | | Issue #15478: Raising an OSError doesn't decode or encode the filename anymore | Victor Stinner | 2012-10-30 | 1 | -0/+11 |
| |/ / | | | | | | | | | | | | | Pass the original filename argument to OSError constructor, instead of trying to encode it to or decode it from the filesystem encoding. This change avoids an additionnal UnicodeDecodeError on Windows if the filename cannot be decoded from the filesystem encoding (ANSI code page). | ||||
| * | | compare singletons by identity not equality (closes #16712) | Benjamin Peterson | 2012-10-09 | 1 | -1/+1 |
| | | | | | | | | | Patch from Serhiy Storchaka. | ||||
| * | | #15304: merge with 3.2. | Ezio Melotti | 2012-09-21 | 1 | -1/+1 |
| |\ \ | |/ | |||||
| | * | #15304: fix wrong warning message in test.support.temp_cwd(). | Ezio Melotti | 2012-09-21 | 1 | -1/+1 |
| | | | |||||
| * | | Merge 3.2 | Brian Curtin | 2012-08-13 | 1 | -2/+66 |
| |\ \ | |/ | |||||
| | * | Fix #15496. Add directory removal helpers to make Windows tests more ↵ | Brian Curtin | 2012-08-13 | 1 | -2/+66 |
| | | | | | | | | | reliable. Patch by Jeremy Kloth | ||||
| * | | Issue #15467: Merge 3.2 | Martin v. Löwis | 2012-07-29 | 1 | -0/+28 |
| |\ \ | |/ | |||||
| | * | Issue #15467: Move helpers for __sizeof__ tests into test_support. | Martin v. Löwis | 2012-07-29 | 1 | -0/+28 |
| | | | | | | | | | Patch by Serhiy Storchaka. | ||||
| * | | #15277: Fix a resource leak in support.py when IPv6 is disabled. | Ross Lagerwall | 2012-07-07 | 1 | -3/+5 |
| | | | | | | | | | | | | | | | | | The leak occurred by setting: echo 1 > /proc/sys/net/ipv6/conf/all/disable_ipv6 before running test_support. Patch by Brian Brazil. | ||||
| * | | Issue #14626: Large refactoring of functions / parameters in the os module. | Larry Hastings | 2012-06-22 | 1 | -2/+2 |
| | | | | | | | | | | | | | | | | | | | Many functions now support "dir_fd" and "follow_symlinks" parameters; some also support accepting an open file descriptor in place of of a path string. Added os.support_* collections as LBYL helpers. Removed many functions only previously seen in 3.3 alpha releases (often starting with "f" or "l", or ending with "at"). Originally suggested by Serhiy Storchaka; implemented by Larry Hastings. | ||||
| * | | Issue #13841: Make child processes exit using sys.exit() on Windows | Richard Oudkerk | 2012-06-14 | 1 | -1/+1 |
| | | | |||||
| * | | #14885: Make support.skip_unless_xattr check also tempfile | Hynek Schlawack | 2012-05-23 | 1 | -10/+18 |
| | | | | | | | | | | | | | | | | | | | There is a rare edge case where the filesystem used by the tempfile functions (usually /tmp) doesn't support xattrs while the one used by TESTFN (the current directory, so likely to be below /home) does. This causes the xattr related test_shutil tests fail. skip_unless_xattr now checks both. I have also added skip_unless_xattr to __all__ where it has been missing. | ||||
| * | | Move private function _args_from_interpreter_flags() to subprocess.py, so | Antoine Pitrou | 2012-05-18 | 1 | -2/+1 |
| | | | | | | | | | | | that it can be imported when threads are disabled. (followup to issue #12098) | ||||
| * | | #12098: Make multiprocessing's child processes inherit sys.flags on Windows | Richard Oudkerk | 2012-05-18 | 1 | -18/+2 |
| | | | | | | | | | Initial patch by Sergey Mezentsev. | ||||
| * | | Issue #14366: Support lzma compression in zip files. | Martin v. Löwis | 2012-05-13 | 1 | -1/+8 |
| | | | | | | | | | Patch by Serhiy Storchaka. | ||||
| * | | Issue #14082: shutil.copy2() now copies extended attributes, if possible. | Antoine Pitrou | 2012-05-12 | 1 | -0/+29 |
| | | | | | | | | | Patch by Hynek Schlawack. | ||||
| * | | Issue #14371: Support bzip2 in zipfile module. | Martin v. Löwis | 2012-05-01 | 1 | -1/+8 |
| | | | | | | | | | Patch by Serhiy Storchaka. | ||||
| * | | merged | Alexander Belopolsky | 2012-04-29 | 1 | -1/+5 |
| |\ \ | |/ | |||||
| | * | fixed test_imaplib failure on Win | Alexander Belopolsky | 2012-04-29 | 1 | -1/+5 |
| | | | |||||
| * | | Issue #10941: Fix imaplib.Internaldate2tuple to produce correct result near | Alexander Belopolsky | 2012-04-29 | 1 | -1/+30 |
| |\ \ | |/ | | | | | the DST transition. Patch by Joe Peterson. | ||||
| | * | Issue #10941: Fix imaplib.Internaldate2tuple to produce correct result near | Alexander Belopolsky | 2012-04-29 | 1 | -1/+30 |
| | | | | | | | | | the DST transition. Patch by Joe Peterson. | ||||
| * | | Issue #14154: Reimplement the bigmem test memory watchdog as a subprocess. | Charles-François Natali | 2012-03-24 | 1 | -56/+10 |
| | | | |||||
| * | | Issue #7652: Integrate the decimal floating point libmpdec library to speed | Stefan Krah | 2012-03-21 | 1 | -2/+2 |
| | | | | | | | | | | | up the decimal module. Performance gains of the new C implementation are between 12x and 80x, depending on the application. | ||||
| * | | Issue #14107: test: Fix a deadlock involving the memory watchdog thread. | Charles-François Natali | 2012-02-26 | 1 | -0/+10 |
| | | | |||||
| * | | Merge 3.2: Issue #13703 plus some related test suite fixes. | Georg Brandl | 2012-02-20 | 1 | -0/+1 |
| |\ \ | |/ | |||||
| | * | Make "regrtest -j" "-R"-aware | Antoine Pitrou | 2012-02-20 | 1 | -0/+1 |
| | | | |||||
