Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Transplant of rev 544b654d000c: directory traversal attack in ↵ | Georg Brandl | 2013-11-11 | 1 | -0/+12 |
| | | | | CGIHttpRequestHandler. | ||||
* | Fixed merge test for Tcl/Tk <8.5 (issue #18964). | Serhiy Storchaka | 2013-10-27 | 1 | -2/+5 |
| | |||||
* | Skip overzealous test for existence of the online license.html for ↵v3.3.3rc1 | Georg Brandl | 2013-10-27 | 1 | -0/+2 |
| | | | | pre-release versions. | ||||
* | Issue #16037: HTTPMessage.readheaders() raises an HTTPException when more than | Georg Brandl | 2013-10-27 | 1 | -0/+9 |
| | | | | 100 headers are read. Adapted from patch by Jyrki Pulliainen. | ||||
* | Issue #16040: CVE-2013-1752: nntplib: Limit maximum line lengths to 2048 to | Georg Brandl | 2013-10-27 | 1 | -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 to | Georg Brandl | 2013-10-27 | 1 | -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 Brandl | 2013-10-27 | 1 | -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 limit | Georg Brandl | 2013-10-27 | 1 | -0/+11 |
| | | | | line length. Patch by Emil Lind. | ||||
* | Issue #19288: Fixed the "in" operator of dbm.gnu databases for string | Serhiy Storchaka | 2013-10-24 | 1 | -0/+1 |
| | | | | argument. Original patch by Arfrever Frehtes Taifersar Arahesis. | ||||
* | Issue #19287: Fixed the "in" operator of dbm.ndbm databases for string | Serhiy Storchaka | 2013-10-24 | 1 | -0/+1 |
| | | | | argument. Original patch by Arfrever Frehtes Taifersar Arahesis. | ||||
* | Issue #19327: Fixed the working of regular expressions with too big charset. | Serhiy Storchaka | 2013-10-24 | 1 | -0/+3 |
| | |||||
* | Increase the coverage of macurl2path. Patch by Colin Williams. | Senthil Kumaran | 2013-10-24 | 2 | -1/+31 |
| | |||||
* | Issue #19360: fix test_site when Python is installed into $HOME/.local | Antoine Pitrou | 2013-10-23 | 1 | -2/+8 |
| | |||||
* | Issue #19340: Fix test_sysconfig when Python is built with an empty prefix. | Antoine Pitrou | 2013-10-23 | 1 | -2/+4 |
| | | | | Patch by Sunny K. | ||||
* | [Issue #19357] Ensure module "loaded" during tests gets forgotten. | Eric Snow | 2013-10-23 | 1 | -1/+1 |
| | |||||
* | Issue #15207: Fix mimetypes to read from correct area in Windows registry ↵ | Tim Golden | 2013-10-22 | 1 | -1/+2 |
| | | | | (Original patch by Dave Chambers) | ||||
* | #8964: fix platform._sys_version to handle IronPython 2.6+. | Ezio Melotti | 2013-10-21 | 1 | -0/+13 |
| | |||||
* | Make test_audioop discoverable by unittest. | Serhiy Storchaka | 2013-10-20 | 1 | -5/+1 |
| | |||||
* | Issue #16038: CVE-2013-1752: ftplib: Limit amount of data read by | Serhiy Storchaka | 2013-10-20 | 1 | -1/+21 |
| | | | | | limiting the call to readline(). Original patch by Michał Jastrzębski and Giampaolo Rodola. | ||||
* | Fixed tests for issue #19279. | Serhiy Storchaka | 2013-10-19 | 1 | -4/+3 |
| | |||||
* | Issue #19279: UTF-7 decoder no more produces illegal strings. | Serhiy Storchaka | 2013-10-19 | 1 | -0/+30 |
| | |||||
* | Issue 19276: Fix tests for wave files on big-endian platforms. | Serhiy Storchaka | 2013-10-17 | 1 | -3/+10 |
| | | | | Skip tests for 24-bit wave file on big-endian platforms. | ||||
* | Issue #14407: Fix unittest test discovery in test_concurrent_futures. | Antoine Pitrou | 2013-10-15 | 1 | -22/+13 |
| | |||||
* | Print process instead of pid. | Richard Oudkerk | 2013-10-15 | 1 | -1/+1 |
| | |||||
* | Issue #18919: Fixed resource leaks in audio tests. | Serhiy Storchaka | 2013-10-14 | 1 | -12/+12 |
| | |||||
* | Issue #18919: Check warnings messages in the aifc module tests. | Serhiy Storchaka | 2013-10-14 | 1 | -3/+7 |
| | |||||
* | Issue #18776: atexit callbacks now display their full traceback when they ↵ | Antoine Pitrou | 2013-10-13 | 1 | -0/+19 |
| | | | | raise an exception. | ||||
* | Issue #18919: Unified and extended tests for audio modules: aifc, sunau and | Serhiy Storchaka | 2013-10-13 | 18 | -226/+557 |
| | | | | wave. | ||||
* | Make test_terminate() succeed or fail quickly. | Richard Oudkerk | 2013-10-12 | 1 | -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 Peters | 2013-10-09 | 1 | -0/+18 |
| | |||||
* | #19166: use an unused var in a test. Patch by Vajrasky Kok. | Ezio Melotti | 2013-10-05 | 1 | -0/+3 |
| | |||||
* | Issue #18594: Make the C code more closely match the pure python code. | Raymond Hettinger | 2013-10-04 | 1 | -0/+24 |
| | |||||
* | Issue #19014: memoryview.cast() is now allowed on zero-length views. | Antoine Pitrou | 2013-10-03 | 1 | -3/+10 |
| | |||||
* | Issue #19137: The pprint module now correctly formats instances of set and | Serhiy Storchaka | 2013-10-02 | 1 | -12/+67 |
| | | | | frozenset subclasses. | ||||
* | Close #19092: ExitStack now reraises exceptions from __exit__ | Nick Coghlan | 2013-10-01 | 1 | -0/+37 |
| | | | | Report and patch by Hrvoje Nikšić | ||||
* | Issue #19112: avoid using function defined in method. | Richard Oudkerk | 2013-09-29 | 1 | -8/+9 |
| | |||||
* | move helper function into its test method (closes #19112) | Benjamin Peterson | 2013-09-29 | 1 | -7/+6 |
| | |||||
* | fix duplicate test names in test_dis (closes #19117) | Benjamin Peterson | 2013-09-29 | 1 | -4/+0 |
| | |||||
* | remove duplicate test_mkd (closes #19118) | Benjamin Peterson | 2013-09-29 | 1 | -4/+0 |
| | |||||
* | combine two tests to avoid duplicate names (closes #19116) | Benjamin Peterson | 2013-09-29 | 1 | -1/+0 |
| | |||||
* | fix duplicate test name (closes #19126) | Benjamin Peterson | 2013-09-29 | 1 | -1/+1 |
| | |||||
* | fix test to run and test that smtpd does support ELHO (closes #19125) | Benjamin Peterson | 2013-09-29 | 1 | -3/+3 |
| | |||||
* | remove duplicate test from test_import (closes #19122) | Benjamin Peterson | 2013-09-29 | 1 | -11/+0 |
| | |||||
* | Issue #19053: ZipExtFile.read1() with non-zero argument no more returns empty | Serhiy Storchaka | 2013-09-27 | 1 | -0/+39 |
| | | | | bytes until end of data. | ||||
* | Issue #19028: Fixed tkinter.Tkapp.merge() for non-string arguments. | Serhiy Storchaka | 2013-09-23 | 1 | -0/+31 |
| | |||||
* | Fix comment in test_gdb | Nick Coghlan | 2013-09-22 | 1 | -1/+2 |
| | |||||
* | Merge #14984: On POSIX, enforce permissions when reading default .netrc. | R David Murray | 2013-09-18 | 1 | -3/+23 |
|\ | |||||
| * | Merge #14984: On POSIX, enforce permissions when reading default .netrc. | R David Murray | 2013-09-18 | 1 | -3/+23 |
| |\ | |||||
| | * | #14984: On POSIX, enforce permissions when reading default .netrc. | R David Murray | 2013-09-18 | 1 | -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 Brandl | 2012-02-20 | 1 | -5/+0 |
| | | | | | | | | | | | | doesn't preserve Python flags and fails from a temp directory. |