Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Issue #23914: Fixed SystemError raised by unpickler on broken pickle data. | Serhiy Storchaka | 2015-11-23 | 2 | -1/+87 |
| | |||||
* | Issue #25691: Fixed crash on deleting ElementTree.Element attributes. | Serhiy Storchaka | 2015-11-23 | 2 | -0/+59 |
| | |||||
* | Issue #25624: ZipFile now always writes a ZIP_STORED header for directory | Serhiy Storchaka | 2015-11-22 | 1 | -0/+23 |
| | | | | entries. Patch by Dingyuan Wang. | ||||
* | Issue #19687: Fixed memory leak on failed Element slice assignment. | Serhiy Storchaka | 2015-11-22 | 1 | -0/+75 |
| | | | | Added new tests for Element slice assignments. | ||||
* | Issue #25686: test_shutil no longer uses the distutils package for searching | Serhiy Storchaka | 2015-11-21 | 1 | -9/+7 |
| | | | | and running external archivers. | ||||
* | asyncio: Fix with github | Yury Selivanov | 2015-11-20 | 1 | -3/+4 |
| | | | | See https://github.com/python/asyncio/pull/295 for details | ||||
* | asyncio.tests: Fix whitespace | Yury Selivanov | 2015-11-20 | 1 | -4/+3 |
| | |||||
* | asyncio: Sync with github | Yury Selivanov | 2015-11-20 | 1 | -1/+1 |
| | |||||
* | Issue #25583: Avoid incorrect errors raised by os.makedirs(exist_ok=True) | Martin Panter | 2015-11-19 | 1 | -0/+3 |
| | |||||
* | Issue #25593: Change semantics of EventLoop.stop(). | Guido van Rossum | 2015-11-19 | 1 | -0/+53 |
| | |||||
* | asyncio: Cleanup Future API | Yury Selivanov | 2015-11-17 | 1 | -4/+7 |
| | | | | See https://github.com/python/asyncio/pull/292 for details. | ||||
* | asyncio: Add Transport.is_closing() | Yury Selivanov | 2015-11-16 | 4 | -13/+13 |
| | | | | See https://github.com/python/asyncio/pull/291 for details. | ||||
* | Issue #20220: Add DST rules to work around glibc quirk | Martin Panter | 2015-11-16 | 1 | -1/+3 |
| | | | | This was triggering intermittent failures in unrelated tests. | ||||
* | Issue #9051: Added tests for pickling and copying the timezone objects. | Serhiy Storchaka | 2015-11-16 | 1 | -1/+28 |
| | |||||
* | Issue #25388: Fixed tokenizer crash when processing undecodable source code | Serhiy Storchaka | 2015-11-14 | 1 | -0/+10 |
| | | | | with a null byte. | ||||
* | Fix a few grammar problems in the documentation and comments | Martin Panter | 2015-11-14 | 1 | -1/+1 |
| | |||||
* | Issue #25590: Make rlcompleter only call getattr() once per attribute | Martin Panter | 2015-11-13 | 1 | -0/+13 |
| | | | | | | Previously it was called another time via hasattr(), and both calls were made once for dir(f) and again for dir(f.__class__). This includes a backport of changing from a list to a set from revision 4dbb315fe667. | ||||
* | asyncio: Fix sporadic failing unittests in debug mode | Yury Selivanov | 2015-11-13 | 1 | -14/+18 |
| | |||||
* | Issue #25607: Restore old distutils logging threshold after running tests that | Serhiy Storchaka | 2015-11-12 | 1 | -1/+1 |
| | | | | parse command line arguments. | ||||
* | Issue #22995: Default implementation of __reduce__ and __reduce_ex__ now | Serhiy Storchaka | 2015-11-12 | 4 | -0/+63 |
| | | | | | rejects builtin types with not defined __new__. Added tests for non-pickleable types. | ||||
* | always set OP_NO_SSLv3 by default (closes #25530) | Benjamin Peterson | 2015-11-12 | 1 | -9/+9 |
| | |||||
* | Issue #6598: Avoid clock wrapping around in test_make_msgid_collisions. | Serhiy Storchaka | 2015-11-10 | 1 | -1/+4 |
| | | | | Use time.monotonic or time.time instead of time.clock. | ||||
* | Issue #22643: Skip test_case_operation_overflow on computers with low memory. | Serhiy Storchaka | 2015-11-07 | 1 | -1/+9 |
| | |||||
* | Issue #892902: Added new tests for pickling recursive collections. | Serhiy Storchaka | 2015-11-07 | 1 | -16/+104 |
| | |||||
* | Issue #24802: Copy bytes-like objects to null-terminated buffers if necessary | Martin Panter | 2015-11-07 | 3 | -12/+91 |
| | | | | | | | | This avoids possible buffer overreads when int(), float(), compile(), exec() and eval() are passed bytes-like objects. Similar code is removed from the complex() constructor, where it was not reachable. Patch by John Leitch, Serhiy Storchaka and Martin Panter. | ||||
* | Issue #18010: Fix pydoc web server search to handle package exceptions | Martin Panter | 2015-11-06 | 1 | -6/+32 |
| | | | | Implementation by Antoine Pitrou. | ||||
* | asyncio: Optimize asyncio.sleep(0) | Yury Selivanov | 2015-11-05 | 1 | -0/+24 |
| | |||||
* | Issue #25523: Further a-to-an corrections. | Serhiy Storchaka | 2015-11-02 | 5 | -5/+5 |
| | |||||
* | Issue #25523: Correct "a" article to "an" article | Martin Panter | 2015-11-02 | 11 | -12/+12 |
| | | | | | | This changes the main documentation, doc strings, source code comments, and a couple error messages in the test suite. In some cases the word was removed or edited some other way to fix the grammar. | ||||
* | Issue #25510: fileinput.FileInput.readline() now returns b'' instead of '' | Serhiy Storchaka | 2015-11-01 | 1 | -0/+15 |
| | | | | | at the end if the FileInput was opened with binary mode. Patch by Ryosuke Ito. | ||||
* | Issue #21827: Fixed textwrap.dedent() for the case when largest common | Serhiy Storchaka | 2015-10-28 | 1 | -0/+5 |
| | | | | | whitespace is a substring of smallest leading whitespace. Based on patch by Robert Li. | ||||
* | Issue #23391: Restore OSError constructor argument documentation | Martin Panter | 2015-10-26 | 1 | -5/+12 |
| | | | | | | | | | | | | | | This restores details lost in revision 097f4fda61a4 (since Python 3.3, related to the new OSError subclasses). Further additions: * Markup for attributes and constructor signature * Explain "winerror" and "filename2" * Extend test to check for filename2 defaulting to None * Clarify that the constructor can return a subclass I have intentionally left out any details of allowing more than five arguments, or how the "args" attribute is set for four or more arguments. These details seem to be dependent on the Python version and platform. | ||||
* | Issue #25456: Fix test_idle when Tcl/Tk DLLs are loaded from python.exe's home | Zachary Ware | 2015-10-25 | 1 | -2/+4 |
| | | | | rather than from elsewhere on PATH. | ||||
* | accepted sockets shouldn't inherit the SOCK_NONBLOCK flag (closes #25471) | Benjamin Peterson | 2015-10-25 | 1 | -0/+1 |
| | |||||
* | Fix whitespace. | Guido van Rossum | 2015-10-19 | 1 | -1/+1 |
| | |||||
* | Issue #25441: asyncio: Raise error from drain() when socket is closed. | Guido van Rossum | 2015-10-19 | 1 | -0/+43 |
| | |||||
* | Closes #25411: Improved Unicode support in SMTPHandler. | Vinay Sajip | 2015-10-17 | 1 | -2/+2 |
| | |||||
* | Issue #25093: Fix test_tcl's testloadWithUNC for paths with spaces | Zachary Ware | 2015-10-13 | 1 | -4/+4 |
| | | | | Patch by Serhiy Storchaka. | ||||
* | Cleanup test_descr: remove C8 that is the same as C3. | Serhiy Storchaka | 2015-10-11 | 1 | -8/+0 |
| | |||||
* | Issue #25099: Skip relevant tests in test_compileall when an entry on | Brett Cannon | 2015-10-09 | 1 | -4/+32 |
| | | | | | | | | | | | | sys.path has an unwritable __pycache__ directory. This typically comes up when someone runs the test suite from an administrative install of Python on Windows where the user does not have write permissions to the stdlib's directory. Thanks to Zachary Ware and Matthias Klose for reporting bugs related to this issue. (grafted from 34bbd537b3e688dfbb6498e9083445a6a72fc4b1) | ||||
* | Issue #25365: test_pickle now works in threads disabled builds. | Serhiy Storchaka | 2015-10-10 | 1 | -2/+3 |
| | |||||
* | Issue #25322: Fix test for nested contextlib.suppress | Martin Panter | 2015-10-10 | 1 | -1/+3 |
| | |||||
* | Issue #24402: Factor out PtyTests.run_child() in input() tests | Martin Panter | 2015-10-10 | 1 | -45/+48 |
| | | | | | | This reuses existing code to hopefully make the new test_input_no_stdout_ fileno() test work. It is hanging Free BSD 9 and OS X Tiger buildbots, and I don't know why. | ||||
* | Issue #24402: Fix input() when stdout.fileno() fails; diagnosed by Eryksun | Martin Panter | 2015-10-10 | 1 | -76/+110 |
| | | | | Also factored out some test cases into a new PtyTests class. | ||||
* | prevent unacceptable bases from becoming bases through multiple inheritance ↵ | Benjamin Peterson | 2015-10-07 | 1 | -0/+31 |
| | | | | (#24806) | ||||
* | Issue #25097: Re-raise any other pywin32 error | Zachary Ware | 2015-10-06 | 1 | -0/+1 |
| | |||||
* | Issue #25097: fix Windows error number access | Zachary Ware | 2015-10-06 | 1 | -1/+1 |
| | |||||
* | Merge heads | Serhiy Storchaka | 2015-10-06 | 1 | -4/+1 |
|\ | |||||
| * | Issue #23972: Fix tests for Windows and Debian. | Guido van Rossum | 2015-10-06 | 1 | -4/+1 |
| | | |||||
* | | Issue #25317: Converted doctests in test_tokenize to unittests. | Serhiy Storchaka | 2015-10-06 | 1 | -357/+332 |
|/ | | | | Made test_tokenize discoverable. |