Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | #23647: Increase imaplib's MAXLINE to accommodate modern mailbox sizes. | R David Murray | 2015-03-22 | 2 | -5/+8 |
| | |||||
* | #23539: Set Content-Length to 0 for PUT, POST, and PATCH if body is None. | R David Murray | 2015-03-22 | 5 | -41/+106 |
| | | | | | | | | Some http servers will reject PUT, POST, and PATCH requests if they do not have a Content-Length header. Patch by James Rutherford, with additional cleaning up of the 'request' documentation by me. | ||||
* | #23700: fix/improve comment | R David Murray | 2015-03-22 | 1 | -2/+4 |
| | |||||
* | clarify behavior of shutil.move when destination exists (closes #22933) | Benjamin Peterson | 2015-03-22 | 1 | -6/+3 |
| | | | | Patch by Mike Short. | ||||
* | Issue #22289: Prevent test_urllib2net failures due to ftp connection timeout. | Ned Deily | 2015-03-22 | 2 | -1/+4 |
| | |||||
* | Issue #22079: Deprecation warning now is issued in PyType_Ready() instead of | Serhiy Storchaka | 2015-03-22 | 1 | -5/+8 |
| | | | | | raising TypeError when statically allocated type subclasses dynamically allocated type | ||||
* | Issue #22351: The nntplib.NNTP constructor no longer leaves the connection | Serhiy Storchaka | 2015-03-21 | 3 | -15/+127 |
| | | | | | and socket open until the garbage collector cleans them up. Patch by Martin Panter. | ||||
* | #11726: Make linecache docs reflect that all files are treated the same. | R David Murray | 2015-03-20 | 1 | -2/+2 |
| | | | | | | | Being able to read non-python text files is not a purpose of linecache, but it does work and people use it. This changeset adjusts the language to make it clear that Python files are not treated uniquely, but does not go so far as to say reading non-python files is explicitly supported. | ||||
* | Issue #23681: Fixed Python 2 to 3 poring bugs. | Serhiy Storchaka | 2015-03-20 | 5 | -14/+12 |
| | | | | Indexing bytes retiurns an integer, not bytes. | ||||
* | Issue #23700: NamedTemporaryFile iterator closed underlied file object in | Serhiy Storchaka | 2015-03-20 | 1 | -3/+5 |
| | | | | | | some circunstances while NamedTemporaryFile object was living. This causes failing test_csv. Changed the implementation of NamedTemporaryFile.__iter__ to make tests passed. | ||||
* | Issue #23686: Update OS X 10.5 installer build to use OpenSSL 1.0.2a. | Ned Deily | 2015-03-19 | 3 | -12/+12 |
| | |||||
* | Fixed Misc/NEWS entry for issue #23136. | Serhiy Storchaka | 2015-03-19 | 1 | -1/+1 |
| | |||||
* | Issue #23136: _strptime now uniformly handles all days in week 0, including | Serhiy Storchaka | 2015-03-19 | 3 | -5/+26 |
| | | | | Jan 30 of previous year. Based on patch by Jim Carroll. | ||||
* | Issue #23700: Iterator of NamedTemporaryFile now keeps a reference to | Serhiy Storchaka | 2015-03-19 | 3 | -1/+19 |
| | | | | NamedTemporaryFile instance. Patch by Bohuslav Kabrda. | ||||
* | wrap properly | Benjamin Peterson | 2015-03-19 | 1 | -2/+2 |
| | |||||
* | issue23673 | Ethan Furman | 2015-03-19 | 4 | -9/+48 |
| | | | | | | | | | add private method to enum to support replacing global constants with Enum members: - search for candidate constants via supplied filter - create new enum class and members - insert enum class and replace constants with members via supplied module name - replace __reduce_ex__ with function that returns member name, so previous Python versions can unpickle modify IntEnum classes to use new method | ||||
* | Issue #22903: The fake test case created by unittest.loader when it fails ↵ | Antoine Pitrou | 2015-03-18 | 3 | -9/+32 |
| | | | | importing a test module is now picklable. | ||||
* | Issue #23353: improve exceptions tests for generators | Antoine Pitrou | 2015-03-18 | 1 | -0/+46 |
| | |||||
* | _tracemalloc.c: Fix typo | Victor Stinner | 2015-03-18 | 1 | -1/+1 |
| | |||||
* | Issue #11726: Fix linecache example in the doc | Victor Stinner | 2015-03-18 | 2 | -4/+4 |
| | | | | | | | Use a Python source file (linecache.__file__) instead of /etc/passwd. Modify also linecache docstrings to clarify the linecache is written to cache Python source files, not any text files. | ||||
* | Issue #11726: clarify linecache doc: linecache is written to cache Python | Victor Stinner | 2015-03-18 | 1 | -2/+5 |
| | | | | source files, even if "it works" with other text files encoded to UTF-8. | ||||
* | Issue #19428: Document that PyMarshal_ReadLongFromFile() and | Victor Stinner | 2015-03-18 | 1 | -6/+15 |
| | | | | PyMarshal_ReadShortFromFile() can fail. | ||||
* | Issue #23456: Add missing @coroutine decorators in asyncio | Victor Stinner | 2015-03-18 | 3 | -0/+5 |
| | |||||
* | Issue #23207: Improved kwarg validation. | Vinay Sajip | 2015-03-18 | 2 | -1/+5 |
| | |||||
* | Issue #22585: make URandomFDTests test case actually run | Ned Deily | 2015-03-17 | 1 | -0/+1 |
| | |||||
* | Issue #23682: Delete Python 2.2 mention from distutils documentation. | Berker Peksag | 2015-03-17 | 1 | -14/+0 |
| | | | | Patch by Thomas Kluyver. | ||||
* | versionchanged for rc4 removal (closes #23679) | Benjamin Peterson | 2015-03-16 | 1 | -2/+6 |
| | |||||
* | Use non-zero and non-last positions in error handler tests. | Serhiy Storchaka | 2015-03-16 | 1 | -24/+28 |
| | |||||
* | Increased coverage of standard codec error handlers. | Serhiy Storchaka | 2015-03-15 | 1 | -76/+158 |
| | |||||
* | Issue #23549: Clarify confusion in heapq doc - accessing the mininmal element | Eli Bendersky | 2015-03-15 | 1 | -2/+4 |
| | | | | | | | The current documentation only mentions heap[0] as the smallest element in the beginning, and not in any of the methods' docs. There's no method to access the minimal element without popping it, and the documentation of nsmallest is confusing because it may suggest that min() is the way to go for n==1. | ||||
* | Issue #23568: Add rdivmod support to MagicMock() objects. | Berker Peksag | 2015-03-14 | 3 | -1/+21 |
| | | | | Patch by Håkan Lövdahl. | ||||
* | Fix minor docs markup errors. | Serhiy Storchaka | 2015-03-14 | 2 | -2/+2 |
| | |||||
* | Fixes incorrect use of GetLastError where errno should be used. | Steve Dower | 2015-03-14 | 1 | -6/+6 |
| | |||||
* | __getslice__ certainly won't appear in the output | Benjamin Peterson | 2015-03-13 | 1 | -1/+1 |
| | |||||
* | Make the case to only support Python 2.7 when supporting 2/3 simultaneously | Brett Cannon | 2015-03-13 | 1 | -13/+13 |
| | |||||
* | Issue #23138: Fixed parsing cookies with absent keys or values in cookiejar. | Serhiy Storchaka | 2015-03-13 | 3 | -15/+57 |
| | | | | Patch by Demian Brecht. | ||||
* | Issue #23051: multiprocessing.Pool methods imap() and imap_unordered() now | Serhiy Storchaka | 2015-03-13 | 4 | -14/+75 |
| | | | | | handle exceptions raised by an iterator. Patch by Alon Diamant and Davin Potts. | ||||
* | use the meth role for ZipFile.open | Benjamin Peterson | 2015-03-13 | 1 | -1/+1 |
| | |||||
* | Issue #23081: Document that PySequence_List also accepts iterables. | Berker Peksag | 2015-03-13 | 1 | -2/+3 |
| | | | | Patch by Lars Buitinck. | ||||
* | Issue #22154: Add an example to show context management protocol support of ↵ | Berker Peksag | 2015-03-13 | 1 | -0/+7 |
| | | | | | | ZipFile.open(). Patch by Mike Short. | ||||
* | Issue #23641: Cleaned out legacy dunder names from tests and docs. | Serhiy Storchaka | 2015-03-12 | 19 | -124/+72 |
| | | | | Fixed 2 to 3 porting bug in pynche.ColorDB. | ||||
* | Issue #20617: Remove unused import in test_ssl. | Berker Peksag | 2015-03-12 | 1 | -1/+0 |
| | | | | Patch by Mark Lawrence. | ||||
* | Issue #23605: Refactor os.walk() tests to also run them on os.fwalk() | Victor Stinner | 2015-03-12 | 1 | -37/+70 |
| | |||||
* | Issue #22928: Disabled HTTP header injections in http.client. | Serhiy Storchaka | 2015-03-12 | 3 | -0/+97 |
| | | | | Original patch by Demian Brecht. | ||||
* | Issue #23192: Fixed generator lambdas. Patch by Bruno Cauet. | Serhiy Storchaka | 2015-03-11 | 4 | -2/+25 |
| | |||||
* | Issue #23615: Modules bz2, tarfile and tokenize now can be reloaded with | Serhiy Storchaka | 2015-03-11 | 5 | -6/+7 |
| | | | | imp.reload(). Patch by Thomas Kluyver. | ||||
* | Removes unused format string insertion in launcher.c. | Steve Dower | 2015-03-11 | 1 | -1/+1 |
| | |||||
* | Issue #23629: Fix the default __sizeof__ implementation for variable-sized ↵ | Antoine Pitrou | 2015-03-10 | 6 | -29/+22 |
| | | | | objects. | ||||
* | Issue #22028: Ensure mimetypes will not open registry keys with embedded nulls | Steve Dower | 2015-03-10 | 1 | -1/+2 |
| | |||||
* | asyncio: Fix repr(BaseSubprocessTransport) if it didn't start yet | Victor Stinner | 2015-03-10 | 1 | -2/+5 |
| | | | | | Replace "running" with "not started" and don't show the pid if the subprocess didn't start yet. |