summaryrefslogtreecommitdiffstats
path: root/Lib/test
Commit message (Collapse)AuthorAgeFilesLines
* #14977: Make mailcap respect the order of the lines in the mailcap file.R David Murray2016-09-102-24/+47
| | | | | This is required by RFC 1542, so despite the subtle behavior change we are treating it as a bug. Patch by Michael Lazar.
* Merge asyncio upstream.Guido van Rossum2016-09-092-1/+69
|
* #28047: Fix calculation of base64 line length.R David Murray2016-09-092-3/+32
| | | | | This is buggy in the old email code as well, but it doesn't affect anything there because only the default line length is ever used there.
* Issue #26020: Fix evaluation order for set literalsRaymond Hettinger2016-09-081-0/+15
|
* Issue #27445: Don't pass str(_charset) to MIMEText.set_payload()Berker Peksag2016-09-081-1/+4
| | | | Patch by Claude Paroz.
* Issue11551 - Increase the test coverage of _dummy_thread module to 100%.Senthil Kumaran2016-09-081-41/+115
| | | | Initial patch contributed by Denver Coneybeare.
* Fixes #27930: improved QueueListener behaviour.Vinay Sajip2016-09-081-4/+86
|
* Issue #27993: Fix problems with plural objects in docs and commentsMartin Panter2016-09-071-1/+1
|
* Issue #27895: Spelling fixes (Contributed by Ville Skyttä).Martin Panter2016-09-0712-16/+16
|
* Issue #27570: Avoid zero-length memcpy() calls with null source pointersMartin Panter2016-09-071-2/+12
|
* #22233: Only split headers on \r and/or \n, per email RFCs.R David Murray2016-09-073-2/+75
| | | | Original patch by Martin Panter, new policy fixes by me.
* 27988: Make sure iter_attachments does not mutate the payload list.R David Murray2016-09-071-0/+10
|
* capture stderr to silence output during test_coroutines (closes #27968)Benjamin Peterson2016-09-071-1/+2
|
* [backport to 3.5] - issue26896 - Disambiguate uses of "importer" with "finder".Senthil Kumaran2016-09-073-3/+1
|
* Issue #27691: Fix ssl module's parsing of GEN_RID subject alternative name ↵Christian Heimes2016-09-063-4/+105
| | | | fields in X.509 certs.
* suppress stderr output when checking gdb (closes #27969)Benjamin Peterson2016-09-061-0/+1
|
* Issue #27748: Backed out changeset f845e24d794eZachary Ware2016-09-051-4/+1
| | | | Apparently the test succeeds on XP.
* Issue #27748: strengthen test_alias_nofallbackZachary Ware2016-09-051-1/+4
| | | | This test should always raise RuntimeError.
* Issue #26470: Port ssl and hashlib module to OpenSSL 1.1.0.Christian Heimes2016-09-051-31/+58
|
* Issue #27748: Simplify test_winsound.Zachary Ware2016-09-052-203/+62
| | | | | | The tests no longer attempt to figure out if a soundcard or particular system sounds are available. Instead, it just tries everything and accepts RuntimeError as a flavor of success.
* do not allow _PyGen_Finalize to fail (closes #27811)Benjamin Peterson2016-09-051-0/+8
| | | | Patch from Armin Rigo.
* Issue #27918# test.resource.is_gui_available no longer flashes tk window.Terry Jan Reedy2016-09-051-2/+3
| | | | Also, don't run it if 'gui' is not requested. Patch by Xiang Zhang.
* Issue 27936: Fix inconsistent round() behavior between float and intRaymond Hettinger2016-09-032-1/+12
|
* Issue #27706: Fix regression in random.seed(somestr, version=1)Raymond Hettinger2016-08-311-0/+18
|
* Don't select for read on character devices in _UnixWritePipeTransport.Guido van Rossum2016-08-311-0/+75
| | | | Upstream https://github.com/python/asyncio/pull/374 by Ron Frederick.
* Issue #27907: variable rename. (Ville Skyttä)Guido van Rossum2016-08-311-2/+2
|
* Skip test_tools.test_i18n when pygettext.py is missingZachary Ware2016-08-301-1/+5
|
* Issue #19884: Avoid spurious output on OS X with Gnu ReadlineMartin Panter2016-08-271-1/+1
| | | | | Also adjust the test condition, because enable-meta-key was only added in 6.1, not 6.0.
* Issue 19504: Change "customise" to "customize" American spelling.Raymond Hettinger2016-08-262-2/+2
|
* A new version of typing.py from https://github.com/python/typing.Guido van Rossum2016-08-231-1/+12
|
* Issue #27539: Fix unnormalised Fraction.__pow__ result for negative exponent ↵Mark Dickinson2016-08-221-0/+13
| | | | and base. Thanks Vedran Čačić.
* Issue #27782: Fix m_methods handling in multiphase initNick Coghlan2016-08-211-0/+9
| | | | | | | | Multi-phase extension module import now correctly allows the ``m_methods`` field to be used to add module level functions to instances of non-module types returned from ``Py_create_mod``. Patch by Xiang Zhang.
* Issue #27487: Warn if submodule already imported before runpy executionMartin Panter2016-08-212-10/+38
| | | | Also try to clarify the find_spec() error message.
* Issue #27614: Avoid race in test_docxmlrpc server setupMartin Panter2016-08-201-30/+11
|
* Issue #27787: Clean up weak references before checking for dangling threadsMartin Panter2016-08-201-0/+1
|
* Issue #27801: Skip test_update_lines_cols when update_lines_cols() is not ↵Berker Peksag2016-08-191-0/+1
| | | | available
* #2466: ismount now recognizes mount points user can't access.R David Murray2016-08-191-2/+22
| | | | | Patch by Robin Roth, reviewed by Serhiy Storchaka, comment wording tweaked by me.
* Fix SystemError in "raise" statementVictor Stinner2016-08-181-0/+18
| | | | | | | | Issue #27558: Fix a SystemError in the implementation of "raise" statement. In a brand new thread, raise a RuntimeError since there is no active exception to reraise. Patch written by Xiang Zhang.
* script_helper: kill the subprocess on errorVictor Stinner2016-08-171-8/+8
| | | | | | | | If Popen.communicate() raises an exception, kill the child process to not leave a running child process in background and maybe create a zombi process. This change fixes a ResourceWarning in Python 3.6 when unit tests are interrupted by CTRL+c.
* merge 3.4Benjamin Peterson2016-08-161-0/+2
|\
| * fail when negative values are passed to instr()Benjamin Peterson2016-08-161-0/+2
| |
* | merge 3.4Benjamin Peterson2016-08-141-0/+3
|\ \ | |/
| * do not allow reading negative values with getstr()Benjamin Peterson2016-08-141-0/+3
| |
* | Issue #26741: Clean up subprocess.Popen object in test_pollMartin Panter2016-08-121-1/+2
| |
* | Close HTTP connections and responses in tests to avoid ResourceWarningsMartin Panter2016-08-121-1/+11
| |
* | Correct misspellings of ISO-8859Martin Panter2016-08-101-2/+2
| |
* | Closes #21999: Handled empty strings correctly when in POSIX mode.Vinay Sajip2016-08-091-0/+12
| |
* | Fix spelling and grammar in documentation and code commentsMartin Panter2016-08-043-3/+3
| |
* | [merge from 3.4] - Prevent HTTPoxy attack (CVE-2016-1000110)Senthil Kumaran2016-07-311-0/+12
|\ \ | |/ | | | | | | | | | | Ignore the HTTP_PROXY variable when REQUEST_METHOD environment is set, which indicates that the script is in CGI mode. Issue #27568 Reported and patch contributed by Rémi Rampin.
| * [merge from 3.3] Prevent HTTPoxy attack (CVE-2016-1000110)Senthil Kumaran2016-07-311-0/+13
| |\ | | | | | | | | | | | | | | | | | | Ignore the HTTP_PROXY variable when REQUEST_METHOD environment is set, which indicates that the script is in CGI mode. Issue #27568 Reported and patch contributed by Rémi Rampin.