summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Collapse)AuthorAgeFilesLines
* Issue #15320: Make iterating the list of tests thread-safe when running ↵Antoine Pitrou2012-07-251-12/+28
| | | | | | tests in multiprocess mode. Patch by Chris Jerdonek.
* Issue #7163: Propagate return value of sys.stdout.write.Martin v. Löwis2012-07-253-3/+7
| | | | Patch by Roger Serwy.
* Issue #15318: Prevent writing to sys.stdin.Martin v. Löwis2012-07-253-5/+38
| | | | Patch by Roger Serwy and myself.
* Better test for Issue #15402: Add a __sizeof__ method to struct.StructJesus Cea2012-07-231-4/+4
|
* Issue #15402: Add a __sizeof__ method to struct.Struct.Meador Inge2012-07-231-0/+10
| | | | Initial patch by Serhiy Storchaka.
* #15232: correctly mangle From lines in MIME preamble and epilogueR David Murray2012-07-232-2/+32
|
* Consistently raise a TypeError when a non str is passed to hashlib.newGregory P. Smith2012-07-222-7/+4
| | | | regardless of which of the two implementations of new is used.
* #13922: argparse no longer incorrectly strips '--' after the first one.R David Murray2012-07-222-14/+31
| | | | Patch by Jeff Knupp.
* #12353: argparse now correctly handles null argument values.R David Murray2012-07-222-1/+2
| | | | Patch by Torsten Landschoff.
* #14391: clarify docstring discussion of Action's 'type' argument's value.R David Murray2012-07-211-4/+4
|
* #15342: Add clarifying sentence to posixpath.join docstring.R David Murray2012-07-211-1/+2
| | | | | | This sentence appears as a clarifying note in the HTML docs, and seems worth having in the docstring since it covers a very common use case that isn't otherwise obvious. Thanks to Yongzhi Pan for the suggestion.
* Fix test_pprint random dict ordering.Florent Xicluna2012-07-211-2/+3
|
* Issues #10017 and #14998: Fix TypeError using pprint on dictionaries with ↵Florent Xicluna2012-07-212-1/+14
| | | | unorderable key.
* Issue #14579: Fix CVE-2012-2135: vulnerability in the utf-16 decoder after ↵Antoine Pitrou2012-07-201-4/+26
| | | | | | error handling. Patch by Serhiy Storchaka.
* Issue #15406: Fix deprecation warning in ctypes test_bitfields.pyMeador Inge2012-07-201-4/+4
| | | | Patch by Flávio Ribeiro.
* Issue #6493: Fix handling of c_uint32 bitfields with width of 32 on Windows.Meador Inge2012-07-191-0/+20
|
* Use posixpath.join() explicitely in posixpath.join() testHynek Schlawack2012-07-171-1/+1
| | | | Used os.path.join before which has different semantics on Windows.
* #15377: Make posixpath.join() more strict when checking for str/bytes mixHynek Schlawack2012-07-172-14/+19
| | | | Based on a patch by Nick Coghlan.
* Issue #15230: Attempt to make the OS X buildbots happy by resolving the tmp ↵Nick Coghlan2012-07-171-1/+1
| | | | dir symlink in the test suite
* Fix context manager use in posixpath.join() testsHynek Schlawack2012-07-171-9/+12
| | | | The asserts were useless (and buggy).
* one more test fix for systems without select.poll. tested by deletingGregory P. Smith2012-07-161-3/+6
| | | | | select.poll before running. works both ways (finally). this should fix the windows build.
* Fix unchecked select.poll reference in setUp and tearDown forGregory P. Smith2012-07-161-5/+7
| | | | platforms that don't have it.
* Fix the with_poll tests for platforms without poll. missing import.Gregory P. Smith2012-07-161-0/+1
|
* Fixes Issue #14635: telnetlib will use poll() rather than select() when possibleGregory P. Smith2012-07-162-7/+219
| | | | to avoid failing due to the select() file descriptor limit.
* #15180: Clarify posixpath.join() error message when mixing str & bytesHynek Schlawack2012-07-152-8/+22
|
* Close #15230: runpy.run_path now sets __package__ correctly. Also refactored ↵Nick Coghlan2012-07-142-158/+272
| | | | the runpy tests to use a more systematic approach
* Try other approach to fix issue #15334.Antoine Pitrou2012-07-131-3/+8
|
* Issue #15334: skip test_dynamic_key when run in non-interactive mode.Antoine Pitrou2012-07-131-0/+1
| | | | Patch by Jeremy Kloth.
* Issue #15338: skip test_UNC_path when the current user doesn't have enough ↵Antoine Pitrou2012-07-131-0/+7
| | | | permissions to access the path.
* Issue #15300: Ensure the temporary test working directories are in the same ↵Antoine Pitrou2012-07-111-1/+5
| | | | | | parent folder when running tests in multiprocess mode from a Python build. Patch by Chris Jerdonek.
* Use _RPCFile.write properly.Martin v. Löwis2012-07-111-2/+2
|
* Don't use TextIOBase implementations in _RPCFile.Martin v. Löwis2012-07-111-2/+8
|
* Issue #15319: Revert wrapping of sys.stdin. Patch by Serhiy Storchaka.Martin v. Löwis2012-07-112-2/+2
|
* Backport test for nested namespace packages.Antoine Pitrou2012-07-091-2/+44
|
* normalize whitespaceMartin v. Löwis2012-07-091-1/+1
|
* Issue #13532: Check that arguments to sys.stdout.write are strings.Martin v. Löwis2012-07-093-3/+25
|
* Issue 12510: Delete actual first param name for all methods; revise tests.Terry Jan Reedy2012-07-091-14/+20
|
* revert the changes done for issue14826 - quoting witin Request is not desirable.Senthil Kumaran2012-07-092-6/+0
|
* issue 14826 - Address the buildbot failure ( explanation msg164973)Senthil Kumaran2012-07-081-1/+1
|
* Fix issue14826 - make urllib.request.Request quoted url consistent with ↵Senthil Kumaran2012-07-082-1/+7
| | | | | | URLOpener open method. Patch contributed by Stephen Thorne.
* Issue #14990: tokenize: correctly fail with SyntaxError on invalid encoding ↵Florent Xicluna2012-07-072-1/+5
| | | | declaration.
* Issue #15247: FileIO now raises an error when given a file descriptor ↵Antoine Pitrou2012-07-061-0/+8
| | | | pointing to a directory.
* Fix issue # 15033 - Return the proper exitcode for failure when modules are ↵Senthil Kumaran2012-07-051-0/+15
| | | | invoked using -m switch. Patch contributed by Jeff Knupp
* Issue #9239: add tests for modifying zipfile comments in append mode.Antoine Pitrou2012-06-301-0/+18
|
* urllib.parse cleanup. rename keywords used as variablesSenthil Kumaran2012-06-291-7/+7
|
* Better diagnose test failureAntoine Pitrou2012-06-291-2/+2
|
* #5346: Preserve permissions of mbox, MMDF and Babyl mailbox files on flush()Petri Lehtinen2012-06-292-0/+20
|
* #9559: Don't call _pre_mailbox_hook more than oncePetri Lehtinen2012-06-291-2/+5
|
* Issue #5067: improve some json error messages.Antoine Pitrou2012-06-283-7/+9
| | | | Patch by Serhiy Storchaka.
* Issue #10571: Fix the "--sign" option of distutils' upload command.Antoine Pitrou2012-06-281-1/+1
| | | | Patch by Jakub Wilk.