summaryrefslogtreecommitdiffstats
path: root/Lib/test
Commit message (Collapse)AuthorAgeFilesLines
* Transplant of rev 544b654d000c: directory traversal attack in ↵Georg Brandl2013-11-111-0/+12
| | | | CGIHttpRequestHandler.
* Fixed merge test for Tcl/Tk <8.5 (issue #18964).Serhiy Storchaka2013-10-271-2/+5
|
* Skip overzealous test for existence of the online license.html for ↵v3.3.3rc1Georg Brandl2013-10-271-0/+2
| | | | pre-release versions.
* Issue #16037: HTTPMessage.readheaders() raises an HTTPException when more thanGeorg Brandl2013-10-271-0/+9
| | | | 100 headers are read. Adapted from patch by Jyrki Pulliainen.
* Issue #16040: CVE-2013-1752: nntplib: Limit maximum line lengths to 2048 toGeorg Brandl2013-10-271-0/+10
| | | | | prevent readline() calls from consuming too much memory. Patch by Jyrki Pulliainen.
* Issue #16041: CVE-2013-1752: poplib: Limit maximum line lengths to 2048 toGeorg Brandl2013-10-271-1/+5
| | | | | prevent readline() calls from consuming too much memory. Patch by Jyrki Pulliainen.
* Issue #17997: Change behavior of ``ssl.match_hostname()`` to follow RFC 6125,Georg Brandl2013-10-271-6/+32
| | | | | for security reasons. It now doesn't match multiple wildcards nor wildcards inside IDN fragments.
* Issue #16039: CVE-2013-1752: Change use of readline in imaplib module to limitGeorg Brandl2013-10-271-0/+11
| | | | line length. Patch by Emil Lind.
* Issue #19288: Fixed the "in" operator of dbm.gnu databases for stringSerhiy Storchaka2013-10-241-0/+1
| | | | argument. Original patch by Arfrever Frehtes Taifersar Arahesis.
* Issue #19287: Fixed the "in" operator of dbm.ndbm databases for stringSerhiy Storchaka2013-10-241-0/+1
| | | | argument. Original patch by Arfrever Frehtes Taifersar Arahesis.
* Issue #19327: Fixed the working of regular expressions with too big charset.Serhiy Storchaka2013-10-241-0/+3
|
* Increase the coverage of macurl2path. Patch by Colin Williams.Senthil Kumaran2013-10-242-1/+31
|
* Issue #19360: fix test_site when Python is installed into $HOME/.localAntoine Pitrou2013-10-231-2/+8
|
* Issue #19340: Fix test_sysconfig when Python is built with an empty prefix.Antoine Pitrou2013-10-231-2/+4
| | | | Patch by Sunny K.
* [Issue #19357] Ensure module "loaded" during tests gets forgotten.Eric Snow2013-10-231-1/+1
|
* Issue #15207: Fix mimetypes to read from correct area in Windows registry ↵Tim Golden2013-10-221-1/+2
| | | | (Original patch by Dave Chambers)
* #8964: fix platform._sys_version to handle IronPython 2.6+.Ezio Melotti2013-10-211-0/+13
|
* Make test_audioop discoverable by unittest.Serhiy Storchaka2013-10-201-5/+1
|
* Issue #16038: CVE-2013-1752: ftplib: Limit amount of data read bySerhiy Storchaka2013-10-201-1/+21
| | | | | limiting the call to readline(). Original patch by Michał Jastrzębski and Giampaolo Rodola.
* Fixed tests for issue #19279.Serhiy Storchaka2013-10-191-4/+3
|
* Issue #19279: UTF-7 decoder no more produces illegal strings.Serhiy Storchaka2013-10-191-0/+30
|
* Issue 19276: Fix tests for wave files on big-endian platforms.Serhiy Storchaka2013-10-171-3/+10
| | | | Skip tests for 24-bit wave file on big-endian platforms.
* Issue #14407: Fix unittest test discovery in test_concurrent_futures.Antoine Pitrou2013-10-151-22/+13
|
* Print process instead of pid.Richard Oudkerk2013-10-151-1/+1
|
* Issue #18919: Fixed resource leaks in audio tests.Serhiy Storchaka2013-10-141-12/+12
|
* Issue #18919: Check warnings messages in the aifc module tests.Serhiy Storchaka2013-10-141-3/+7
|
* Issue #18776: atexit callbacks now display their full traceback when they ↵Antoine Pitrou2013-10-131-0/+19
| | | | raise an exception.
* Issue #18919: Unified and extended tests for audio modules: aifc, sunau andSerhiy Storchaka2013-10-1318-226/+557
| | | | wave.
* Make test_terminate() succeed or fail quickly.Richard Oudkerk2013-10-121-2/+14
| | | | This does not fix #19227, but should stop the Gentoo buildbot from hanging.
* Issue 19158: a rare race in BoundedSemaphore could allow .release() too often.Tim Peters2013-10-091-0/+18
|
* #19166: use an unused var in a test. Patch by Vajrasky Kok.Ezio Melotti2013-10-051-0/+3
|
* Issue #18594: Make the C code more closely match the pure python code.Raymond Hettinger2013-10-041-0/+24
|
* Issue #19014: memoryview.cast() is now allowed on zero-length views.Antoine Pitrou2013-10-031-3/+10
|
* Issue #19137: The pprint module now correctly formats instances of set andSerhiy Storchaka2013-10-021-12/+67
| | | | frozenset subclasses.
* Close #19092: ExitStack now reraises exceptions from __exit__Nick Coghlan2013-10-011-0/+37
| | | | Report and patch by Hrvoje Nikšić
* Issue #19112: avoid using function defined in method.Richard Oudkerk2013-09-291-8/+9
|
* move helper function into its test method (closes #19112)Benjamin Peterson2013-09-291-7/+6
|
* fix duplicate test names in test_dis (closes #19117)Benjamin Peterson2013-09-291-4/+0
|
* remove duplicate test_mkd (closes #19118)Benjamin Peterson2013-09-291-4/+0
|
* combine two tests to avoid duplicate names (closes #19116)Benjamin Peterson2013-09-291-1/+0
|
* fix duplicate test name (closes #19126)Benjamin Peterson2013-09-291-1/+1
|
* fix test to run and test that smtpd does support ELHO (closes #19125)Benjamin Peterson2013-09-291-3/+3
|
* remove duplicate test from test_import (closes #19122)Benjamin Peterson2013-09-291-11/+0
|
* Issue #19053: ZipExtFile.read1() with non-zero argument no more returns emptySerhiy Storchaka2013-09-271-0/+39
| | | | bytes until end of data.
* Issue #19028: Fixed tkinter.Tkapp.merge() for non-string arguments.Serhiy Storchaka2013-09-231-0/+31
|
* Fix comment in test_gdbNick Coghlan2013-09-221-1/+2
|
* Merge #14984: On POSIX, enforce permissions when reading default .netrc.R David Murray2013-09-181-3/+23
|\
| * Merge #14984: On POSIX, enforce permissions when reading default .netrc.R David Murray2013-09-181-3/+23
| |\
| | * #14984: On POSIX, enforce permissions when reading default .netrc.R David Murray2013-09-181-3/+23
| | | | | | | | | | | | | | | | | | | | | | | | Initial patch by Bruno Piguet. This is implemented as if a useful .netrc file could exist without passwords, which is possible in the general case; but in fact our netrc implementation does not support it. Fixing that issue will be an enhancement.
| | * Remove setting hash seed to regrtest's random seed and re-execv()ing: this ↵Georg Brandl2012-02-201-5/+0
| | | | | | | | | | | | doesn't preserve Python flags and fails from a temp directory.