summaryrefslogtreecommitdiffstats
path: root/Lib/test
Commit message (Collapse)AuthorAgeFilesLines
* Fix test failures --without-threads.Stefan Krah2014-01-221-1/+9
|
* Issue #17825: Cursor ^ is correctly positioned for SyntaxError and ↵Florent Xicluna2014-01-221-0/+10
| | | | IndentationError.
* Issue #20246: Fix test failures on FreeBSD. Patch by Ryan Smith-Roberts.Stefan Krah2014-01-211-1/+1
|
* Issue #20262: Warnings are raised now when duplicate names are added in theSerhiy Storchaka2014-01-201-3/+6
| | | | ZIP file or too long ZIP file comment is truncated.
* Issue #20270: urllib and urlparse now support empty ports.Serhiy Storchaka2014-01-182-0/+30
|
* Issue #20243: TarFile no longer raise ReadError when opened in write mode.Serhiy Storchaka2014-01-181-0/+16
|
* Backported test for issue #20238.Serhiy Storchaka2014-01-181-0/+6
|
* Issue #20245: The open functions in the tarfile module now correctly handle ↵Serhiy Storchaka2014-01-181-0/+14
| | | | empty mode.
* Issue #20086: Restored the use of locale-independing mapping instead ofSerhiy Storchaka2014-01-171-4/+7
| | | | locale-depending str.lower() in locale.normalize().
* Issue #19936: Added executable bits or shebang lines to Python scripts whichSerhiy Storchaka2014-01-1650-65/+0
| | | | | | requires them. Disable executable bits and shebang lines in test and benchmark files in order to prevent using a random system python, and in source files of modules which don't provide command line interface.
* add test for #20251Benjamin Peterson2014-01-141-0/+7
|
* complain when nbytes > buflen to fix possible buffer overflow (closes #20246)Benjamin Peterson2014-01-141-0/+10
|
* Backported test for the open of non-existent tarfile.Serhiy Storchaka2014-01-131-0/+8
|
* Issue #20138: Backport tests for handling non-ASCII URLs in theSerhiy Storchaka2014-01-121-0/+6
| | | | wsgiref.application_uri() and wsgiref.request_uri() functions.
* Adding test coverage for cgi.FieldStorage based on the scenario mentioned in ↵Senthil Kumaran2014-01-121-0/+10
| | | | issue #19097
* Fixed test_tempfilepager in test_pydoc on Windows.Serhiy Storchaka2014-01-101-2/+3
| | | | | Filename such as r'c:\users\db3l\appdata\local\temp\tmph3vkvf' contains '\t' which is interpreted by ast.literal_eval() as a tabulation.
* Issue #20086: Output more details when test_getsetlocale_issue1813 is failed.Serhiy Storchaka2014-01-101-1/+6
|
* Issue #19804: The test_find_mac test in test_uuid is now skipped if theSerhiy Storchaka2014-01-101-0/+11
| | | | ifconfig executable is not available.
* Issue #19886: Use better estimated memory requirements for bigmem tests.Serhiy Storchaka2014-01-102-20/+10
| | | | Incorrect requirements can cause memory swapping.
* Issue #13107: argparse and optparse no longer raises an exception when outputSerhiy Storchaka2014-01-092-0/+89
| | | | | a help on environment with too small COLUMNS. Based on patch by Elazar Gershuni.
* Issue #20207: Always disable SSLv2 except when PROTOCOL_SSLv2 is explicitly ↵Antoine Pitrou2014-01-091-1/+1
| | | | asked for.
* clear zip stat cache after each ref leak runBenjamin Peterson2014-01-092-7/+8
|
* normalize whitespace from prior issue19081 fix commit.Gregory P. Smith2014-01-061-3/+3
|
* Fixes issue19081: When a zipimport .zip file in sys.path being importedGregory P. Smith2014-01-061-20/+83
| | | | | | | | | | | | | from is modified during the lifetime of the Python process after zipimport has already opened and cached the zip's table of contents it now fstat's the file after opening it upon every attempt to access anything within and will re-read the table of contents if the .zip file inode, size or mtime have changed. It would've been nicer to hold any .zip file used by zipimport open for the duration of the process but that would be more invasive and add an additional open file descriptor to all zipimport using processes. It also would likely not fix the problem on Windows due to different filesystem semantics.
* #1065986: Make pydoc handle unicode strings.R David Murray2014-01-051-0/+91
| | | | Patch by Akira Kitada.
* #16039/#20118: temporarily skip failing imaplib SSL test.R David Murray2014-01-031-0/+3
| | | | | | The fix the test is testing prevents a DOS attack, and the failure mode will also prevent the DOS attack, so for now skip the test. Either the test or the code does need fixing, however.
* closes 16039: CVE-2013-1752: limit line length in imaplib readline calls.R David Murray2014-01-031-0/+10
|
* complain if the codec doesn't return unicodeBenjamin Peterson2013-12-282-0/+7
|
* Issue #19422: Explicitly disallow non-SOCK_STREAM sockets in the ssl module, ↵Antoine Pitrou2013-12-281-0/+7
| | | | rather than silently let them emit clear text data.
* Fixed the wave module testing on big-endian platforms.Serhiy Storchaka2013-12-281-1/+1
| | | | array.fromfile() works only with file objects, not io.FileIO instances.
* Issue #20027: Fixed locale aliases for devanagari locales.Serhiy Storchaka2013-12-261-0/+14
|
* Issue #19320: test_tcl no longer fails when wantobjects is false.Serhiy Storchaka2013-12-251-15/+30
|
* Merge headsSerhiy Storchaka2013-12-191-69/+0
|\
| * Issue #19683: Removed empty tests from test_minidom.Zachary Ware2013-12-191-69/+0
| | | | | | | | Initial patch by Ajitesh Gupta.
* | Don't use sebTest() in tests for issue #5815.Serhiy Storchaka2013-12-191-2/+1
|/
* Issue #5815: Fixed support for locales with modifiers. Fixed support forSerhiy Storchaka2013-12-191-0/+58
| | | | locale encodings with hyphens.
* Issue #18829: csv.Dialect() now checks type for delimiter, escapechar andSerhiy Storchaka2013-12-191-5/+39
| | | | quotechar fields. Original patch by Vajrasky Kok.
* Issue #20006: Fix sporadic failures in test_weakset.Antoine Pitrou2013-12-171-1/+6
|
* Issue #20007: HTTPResponse.read(0) no more prematurely closes connection.Serhiy Storchaka2013-12-171-0/+2
| | | | Original patch by Simon Sapin.
* Skip test for issue #17976 if /dev/null is not available.Serhiy Storchaka2013-12-171-1/+7
|
* Issue #17976: Fixed potential problem with file.write() not detecting IO errorSerhiy Storchaka2013-12-171-0/+8
| | | | | by inspecting the return value of fwrite(). Based on patches by Jaakko Moisio and test by Victor Stinner.
* 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.
* Issue #19912: Fixed numerous bugs in ntpath.splitunc().Serhiy Storchaka2013-12-161-0/+14
| | | | | | | * splitunc() no more returns illegal result for paths with redundant slashes. * splitunc() now correctly processes the u'İ' character (U+0130, LATIN CAPITAL LETTER I WITH DOT ABOVE). * Added new tests for splitunc().
* Issue #19623: Fixed writing to unseekable files in the aifc module.Serhiy Storchaka2013-12-144-54/+93
| | | | Fixed writing 'ulaw' (lower case) compressed AIFC files.
* Issue #17919: Fixed integer overflow in the eventmask parameter.Serhiy Storchaka2013-12-141-5/+8
|
* Issue #17919: select.poll.poll() again works with poll.POLLNVAL on AIX.Serhiy Storchaka2013-12-131-4/+0
|
* Issue #14432: Generator now clears the borrowed reference to the thread stateVictor Stinner2013-12-131-0/+43
| | | | | | | Fix a crash when a generator is created in a C thread that is destroyed while the generator is still used. The issue was that a generator contains a frame, and the frame kept a reference to the Python state of the destroyed C thread. The crash occurs when a trace function is setup.
* Issue #19572: Replace a return that shouldn't have been removed from test_os.Zachary Ware2013-12-101-0/+1
| | | | This should fix the test_os failure on the AMD64 Windows 7 buildbot.
* Issue #19928: Fix test on WindowsZachary Ware2013-12-101-2/+2
|
* Issue #19572: More silently skipped tests explicitly skipped.Zachary Ware2013-12-1051-446/+424
|