summaryrefslogtreecommitdiffstats
path: root/Lib/test
Commit message (Collapse)AuthorAgeFilesLines
* Close #19967: Thanks to the PEP 442, asyncio.Future can use a destructor inVictor Stinner2013-12-191-0/+2
| | | | | Python 3.4 to log "uncatched" exceptions, instead of the dedicated _TracebackLogger class.
* Shorten lines.Guido van Rossum2013-12-191-1/+2
|
* Issue #5815: Fixed support for locales with modifiers. Fixed support forSerhiy Storchaka2013-12-191-0/+58
| | | | locale encodings with hyphens.
* Fix the C definition of the sys._debugmallocstats() function: the function hasVictor Stinner2013-12-191-0/+3
| | | | no parameter
* (Merge 3.3) Issue #20025: ssl.RAND_bytes() and ssl.RAND_pseudo_bytes() nowVictor Stinner2013-12-191-0/+4
|\ | | | | | | raise a ValueError if num is negative (instead of raising a SystemError).
| * Issue #20025: ssl.RAND_bytes() and ssl.RAND_pseudo_bytes() now raise aVictor Stinner2013-12-191-0/+4
| | | | | | | | ValueError if num is negative (instead of raising a SystemError).
* | Issue #18829: csv.Dialect() now checks type for delimiter, escapechar andSerhiy Storchaka2013-12-191-5/+39
|\ \ | |/ | | | | quotechar fields. Original patch by Vajrasky Kok.
| * Issue #18829: csv.Dialect() now checks type for delimiter, escapechar andSerhiy Storchaka2013-12-191-5/+39
| | | | | | | | quotechar fields. Original patch by Vajrasky Kok.
* | Issue #19946: appropriately skip new multiprocessing testsNick Coghlan2013-12-191-9/+5
| | | | | | | | | | | | Thanks to Christian Heimes for noting the buildbot failures and to Zachary Ware for providing the patch to make the new tests play nice with both other platforms and unittest test discovery
* | Issue #20006: Fix sporadic failures in test_weakset.Antoine Pitrou2013-12-171-2/+6
|\ \ | |/
| * Issue #20006: Fix sporadic failures in test_weakset.Antoine Pitrou2013-12-171-1/+6
| |
| * Revert misled test change in f189da5bda26.Antoine Pitrou2013-12-171-1/+0
| |
* | Issue #20007: HTTPResponse.read(0) no more prematurely closes connection.Serhiy Storchaka2013-12-171-0/+3
|\ \ | |/ | | | | Original patch by Simon Sapin.
| * Issue #20007: HTTPResponse.read(0) no more prematurely closes connection.Serhiy Storchaka2013-12-171-0/+3
| | | | | | | | Original patch by Simon Sapin.
* | Close #19946: use runpy as needed in multiprocessingNick Coghlan2013-12-171-0/+287
| | | | | | | | | | | | - handles main files without a suffix - handles main submodules properly - adds test cases for the various kinds of __main__
* | Backout a1a05e2724dd: shutil.which(bytes) is a new feature and my patch does ↵Victor Stinner2013-12-161-11/+2
| | | | | | | | not work on Windows
* | Issue #18283: shutil.which() now supports bytes argument, not only text ↵Victor Stinner2013-12-161-2/+11
| | | | | | | | argument.
* | (Merge 3.3) Close #19999: tolerate coarse time when testing time.monotonic() onVictor Stinner2013-12-161-1/+1
|\ \ | |/ | | | | very busy/slow buildbot
| * Close #19999: tolerate coarse time when testing time.monotonic() on veryVictor Stinner2013-12-161-1/+1
| | | | | | | | busy/slow buildbot
* | Issue #19919: Fix flacky SSL test. connect_ex() sometimes returnsChristian Heimes2013-12-161-2/+4
|\ \ | |/ | | | | EWOULDBLOCK on Windows or VMs hosted on Windows.
| * Issue #19919: Fix flacky SSL test. connect_ex() sometimes returnsChristian Heimes2013-12-161-2/+4
| | | | | | | | EWOULDBLOCK on Windows or VMs hosted on Windows.
* | Issue #19921: When Path.mkdir() is called with parents=True, any missing ↵Antoine Pitrou2013-12-161-2/+11
| | | | | | | | | | | | parent is created with the default permissions, ignoring the mode argument (mimicking the POSIX "mkdir -p" command). Patch by Serhiy.
* | Issue #19887: Improve the Path.resolve() algorithm to support certain ↵Antoine Pitrou2013-12-161-0/+53
| | | | | | | | | | | | symlink chains. Original patch by Serhiy.
* | Issue #19987: Merge with 3.3Zachary Ware2013-12-161-8/+8
|\ \ | |/
| * Issue #19987: Re-write test_alias_fallback in test_winsound to have twoZachary Ware2013-12-161-7/+8
| | | | | | | | | | | | acceptable outcomes: success or RuntimeError. Without being able to actually hear whether a sound was played, either one could be right, but any other error would be a failure.
| * Merge headsSerhiy Storchaka2013-12-161-0/+1
| |\
| | * Issue #17919: add missing import of USHRT_MAXChristian Heimes2013-12-161-0/+1
| | |
* | | Issue #19987: disable test_winsound's test_alias_fallback test when no sound ↵Christian Heimes2013-12-161-6/+7
| | | | | | | | | | | | | | | | | | card is available. The test fails on Windows Server 2008.
* | | Issue #19912: Fixed numerous bugs in ntpath.splitunc().Serhiy Storchaka2013-12-161-0/+23
|\ \ \ | |/ / | | | | | | | | | | | | | | | | | | * splitunc() no more return illegal result for paths with redundant slashes. * splitunc() now correctly processes the 'İ' character (U+0130, LATIN CAPITAL LETTER I WITH DOT ABOVE). * Deprecation warnings now emitted for every use of splitunc(). * Added tests for splitunc().
| * | Issue #19912: Fixed numerous bugs in ntpath.splitunc().Serhiy Storchaka2013-12-161-0/+23
| | | | | | | | | | | | | | | | | | | | | | | | * splitunc() no more return illegal result for paths with redundant slashes. * splitunc() now correctly processes the 'İ' character (U+0130, LATIN CAPITAL LETTER I WITH DOT ABOVE). * Deprecation warnings now emitted for every use of splitunc(). * Added tests for splitunc().
* | | Issue #19911: ntpath.splitdrive() now correctly processes the 'İ' characterSerhiy Storchaka2013-12-161-0/+3
|\ \ \ | |/ / | | | | | | (U+0130, LATIN CAPITAL LETTER I WITH DOT ABOVE).
| * | Issue #19911: ntpath.splitdrive() now correctly processes the 'İ' characterSerhiy Storchaka2013-12-161-0/+3
| |/ | | | | | | (U+0130, LATIN CAPITAL LETTER I WITH DOT ABOVE).
* | Merge: #19532: make compileall with no file/dir args respect -f and -q.R David Murray2013-12-161-2/+23
|\ \ | |/
| * #19532: make compileall with no file/dir args respect -f and -q.R David Murray2013-12-161-0/+23
| | | | | | | | Patch by Vajrasky Kok.
| * Issue #17576: Removed deprecation warnings added in changeset 618cca51a27e.Serhiy Storchaka2013-12-143-24/+12
| |
* | test_ssl: skip tests when SNI is not availableChristian Heimes2013-12-151-0/+2
| |
* | test_poplib: skip stls_context test when SNI is not availableChristian Heimes2013-12-151-0/+5
| |
* | fixed test_ftplibChristian Heimes2013-12-151-1/+1
| |
* | test_imaplib: skip check_hostname test when SNI is not availableChristian Heimes2013-12-151-0/+4
| |
* | test_ftplib: skip check_hostname test when SNI is not availableChristian Heimes2013-12-151-0/+4
| |
* | Skip some tests that require server name indication (SNI)Christian Heimes2013-12-151-0/+6
| |
* | Import USHRT_MAX to fix failing test_devpool testChristian Heimes2013-12-151-0/+1
| |
* | Issue #19700: set __spec__ appropriately in runpyNick Coghlan2013-12-153-38/+166
| | | | | | | | | | | | | | | | Note that __spec__.name is not currently guaranteed to be in sys.modules when the code is running, only __name__ is. The "running module is in sys.modules" invariant will be expanded to also cover __spec__.name in a subsequent patch.
* | Issue #19623: Fixed writing to unseekable files in the aifc module.Serhiy Storchaka2013-12-143-37/+17
|\ \ | |/
| * Issue #19623: Fixed writing to unseekable files in the aifc module.Serhiy Storchaka2013-12-144-59/+93
| |
* | Issue #17919: Fixed integer overflow in the eventmask parameter.Serhiy Storchaka2013-12-142-5/+19
|\ \ | |/
| * Issue #17919: Fixed integer overflow in the eventmask parameter.Serhiy Storchaka2013-12-142-5/+19
| |
* | Merge: #19970: Fix some comment typos.R David Murray2013-12-141-1/+1
|\ \ | |/
| * #19970: Fix some comment typos.R David Murray2013-12-141-1/+1
| | | | | | | | Report and patch by Vajrasky Kok.
* | Issue #19704: Port test.test_threaded_import to PEP 451Brett Cannon2013-12-131-6/+6
| |