Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Implements issue #9951: Adds a hex() method to bytes, bytearray, & memoryview. | Gregory P. Smith | 2015-04-25 | 1 | -0/+1 |
| | | | | | | | Also updates a few internal implementations of the same thing to use the new built-in code. Contributed by Arnon Yaari. | ||||
* | #16914: add timestamps to smtplib debugging output via new debuglevel 2. | R David Murray | 2015-04-16 | 1 | -0/+2 |
| | | | | Patch by Gavin Chappell and Maciej Szulik. | ||||
* | #7159: generalize urllib prior auth support. | R David Murray | 2015-04-16 | 1 | -0/+1 |
| | | | | | | | | | | | | | This fix is a superset of the functionality introduced by the issue #19494 enhancement, and supersedes that fix. Instead of a new handler, we have a new password manager that tracks whether we should send the auth for a given uri. This allows us to say "always send", satisfying #19494, or track that we've succeeded in auth and send the creds right away on every *subsequent* request. The support for using the password manager is added to AbstractBasicAuth, which means the proxy handler also now can handle prior auth if passed the new password manager. Patch by Akshit Khurana, docs mostly by me. | ||||
* | #18128: use standard +NNNN timezone format in POT-Creation-Date header. | R David Murray | 2015-04-16 | 1 | -0/+1 |
| | | | | Patch by Michael McFadden, with a few small style tweaks. | ||||
* | Issue 23193: Add numeric_owner to tarfile.TarFile.extract() and ↵ | Eric V. Smith | 2015-04-15 | 1 | -0/+1 |
| | | | | tarfile.TarFile.extractall(). | ||||
* | add Allison Kaptur (#21217) | Benjamin Peterson | 2015-04-15 | 1 | -0/+1 |
| | |||||
* | Issue #21217: inspect.getsourcelines() now tries to compute the start and | Antoine Pitrou | 2015-04-14 | 1 | -0/+1 |
| | | | | | end lines from the code object, fixing an issue when a lambda function is used as decorator argument. Patch by Thomas Ballinger. | ||||
* | Merge 3.4 (#23310) | Łukasz Langa | 2015-04-14 | 1 | -1/+1 |
|\ | |||||
| * | Issue #23310: Fix MagicMock's initializer to work with __methods__. | Łukasz Langa | 2015-04-14 | 1 | -0/+1 |
| | | | | | | | | Behavior equivalent to m.configure_mock(). Patch by Kasia Jachim. | ||||
* | | Issue #23310: Fix MagicMock's initializer to work with __methods__. | Łukasz Langa | 2015-04-14 | 1 | -0/+1 |
| | | | | | | | | Behavior equivalent to m.configure_mock(). Patch by Kasia Jachim. | ||||
* | | #11754: test contents of string module attributes. | R David Murray | 2015-04-14 | 1 | -0/+1 |
| | | | | | | | | | | | | | | | | As noted in the comment, while the order of the items in the attributes is not technically guaranteed, after all this time there is almost certainly user code out there that relies on it, so we might as well test for it. Patch by Chalmer Lowe. | ||||
* | | Issue #22631: Added Linux-specific socket constant CAN_RAW_FD_FRAMES. | Larry Hastings | 2015-04-13 | 1 | -0/+1 |
| | | | | | | | | Patch courtesy of Joe Jevnik. | ||||
* | | Issue #21116: Avoid blowing memory when allocating a multiprocessing shared | Antoine Pitrou | 2015-04-13 | 1 | -0/+1 |
| | | | | | | | | | | | | array that's larger than 50% of the available RAM. Patch by Médéric Boquien. | ||||
* | | Merge with 3.4 | Zachary Ware | 2015-04-13 | 1 | -0/+1 |
|\ \ | |/ | |||||
| * | Attribute Michael Dorman for his initial patch on issue #18402. | Zachary Ware | 2015-04-13 | 1 | -0/+1 |
| | | |||||
* | | Issue #23338: Fixed formatting ctypes error messages on Cygwin. | Serhiy Storchaka | 2015-04-04 | 1 | -0/+1 |
|\ \ | |/ | | | | | Patch by Makoto Kato. | ||||
| * | Issue #23338: Fixed formatting ctypes error messages on Cygwin. | Serhiy Storchaka | 2015-04-04 | 1 | -0/+1 |
| | | | | | | | | Patch by Makoto Kato. | ||||
* | | #11468: merge with 3.4. | Ezio Melotti | 2015-03-24 | 1 | -0/+1 |
|\ \ | |/ | |||||
| * | #11468: improve unittest basic example. Initial patch by Florian Preinstorfer. | Ezio Melotti | 2015-03-24 | 1 | -0/+1 |
| | | |||||
* | | Merge 3.4 (faulthandler ICC) | Victor Stinner | 2015-03-23 | 1 | -0/+1 |
|\ \ | |/ | |||||
| * | Issue #23654: Fix faulthandler._stack_overflow() for the Intel C Compiler (ICC) | Victor Stinner | 2015-03-23 | 1 | -0/+1 |
| | | | | | | | | | | | | | | Issue #23654: Turn off ICC's tail call optimization for the stack_overflow generator. ICC turns the recursive tail call into a loop. Patch written by Matt Frank. | ||||
* | | Merge: #23539: Set Content-Length to 0 for PUT, POST, and PATCH if body is None. | R David Murray | 2015-03-22 | 1 | -0/+1 |
|\ \ | |/ | |||||
| * | #23539: Set Content-Length to 0 for PUT, POST, and PATCH if body is None. | R David Murray | 2015-03-22 | 1 | -0/+1 |
| | | | | | | | | | | | | | | | | 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. | ||||
* | | Issue #23051: multiprocessing.Pool methods imap() and imap_unordered() now | Serhiy Storchaka | 2015-03-13 | 1 | -0/+2 |
|\ \ | |/ | | | | | | | handle exceptions raised by an iterator. Patch by Alon Diamant and Davin Potts. | ||||
| * | Issue #23051: multiprocessing.Pool methods imap() and imap_unordered() now | Serhiy Storchaka | 2015-03-13 | 1 | -0/+2 |
| | | | | | | | | | | handle exceptions raised by an iterator. Patch by Alon Diamant and Davin Potts. | ||||
| * | Issue #23192: Fixed generator lambdas. Patch by Bruno Cauet. | Serhiy Storchaka | 2015-03-11 | 1 | -0/+1 |
| | | |||||
* | | Issue #19980: Improved help() for non-recognized strings. help('') now | Serhiy Storchaka | 2015-02-28 | 1 | -0/+1 |
| | | | | | | | | | | shows the help on str. help('help') now shows the help on help(). Original patch by Mark Lawrence. | ||||
* | | Merge 3.4 (httplib) | Victor Stinner | 2015-02-27 | 1 | -0/+1 |
|\ \ | |/ | |||||
| * | Issue #23526: Fix ResourceWarning in test_httplib. Patch written by Alex Shkop. | Victor Stinner | 2015-02-27 | 1 | -0/+1 |
| | | |||||
* | | merge 3.4 (#21548) | Benjamin Peterson | 2015-02-17 | 1 | -0/+1 |
|\ \ | |/ | |||||
| * | fix pydoc.apropos and pydoc.synopsis on modules with empty docstrings (#21548) | Benjamin Peterson | 2015-02-17 | 1 | -0/+1 |
| | | | | | | | | Patch by Yuyang Guo and Berker Peksag. | ||||
* | | merge 3.4 (#22735) | Benjamin Peterson | 2015-02-06 | 1 | -0/+1 |
|\ \ | |/ | |||||
| * | fix many custom mro() edge cases and improve code quality (#22735) | Benjamin Peterson | 2015-02-06 | 1 | -0/+1 |
| | | | | | | | | Patch by Eldar Abusalimov. | ||||
* | | Issue #15859: PyUnicode_EncodeFSDefault(), PyUnicode_EncodeMBCS() and | Victor Stinner | 2015-01-26 | 1 | -0/+1 |
| | | | | | | | | | | | | PyUnicode_EncodeCodePage() now raise an exception if the object is not an Unicode object. For PyUnicode_EncodeFSDefault(), it was already the case on platforms other than Windows. Patch written by Campbell Barton. | ||||
* | | Issue #23180: merge from 3.4 | Ned Deily | 2015-01-18 | 1 | -0/+1 |
|\ \ | |/ | |||||
| * | Issue #23180: Rename IDLE "Windows" menu item to "Window". | Ned Deily | 2015-01-18 | 1 | -0/+1 |
| | | | | | | | | Patch by Al Sweigart. | ||||
* | | merge 3.4 (#23221) | Benjamin Peterson | 2015-01-13 | 1 | -0/+1 |
|\ \ | |/ | |||||
| * | fix instances of consecutive articles (closes #23221) | Benjamin Peterson | 2015-01-13 | 1 | -0/+1 |
| | | | | | | | | Patch by Karan Goel. | ||||
* | | Issue #19777: Provide a home() classmethod on Path objects. | Antoine Pitrou | 2015-01-12 | 1 | -0/+2 |
| | | | | | | | | Contributed by Victor Salgado and Mayank Tripathi. | ||||
* | | Issue #23206: Make ``json.dumps(..., ensure_ascii=False)`` as fast as the ↵ | Antoine Pitrou | 2015-01-11 | 1 | -0/+1 |
| | | | | | | | | default case of ``ensure_ascii=True``. Patch by Naoki Inada. | ||||
* | | Issue #22038: pyatomic.h now uses stdatomic.h or GCC built-in functions for | Victor Stinner | 2015-01-09 | 1 | -0/+2 |
| | | | | | | | | | | atomic memory access if available. Patch written by Vitor de Lima and Gustavo Temple. | ||||
* | | Issue #22902: The "ip" command is now used on Linux to determine MAC address | Serhiy Storchaka | 2014-11-30 | 1 | -0/+1 |
| | | | | | | | | in uuid.getnode(). Pach by Bruno Cauet. | ||||
* | | (Merge 3.4) Closes #22348: Rephrase asyncio.StreamWriter.drain() documentation | Victor Stinner | 2014-11-28 | 1 | -0/+1 |
|\ \ | |/ | | | | | Patch written by Martin Richard. | ||||
| * | Closes #22348: Rephrase asyncio.StreamWriter.drain() documentation | Victor Stinner | 2014-11-28 | 1 | -0/+1 |
| | | | | | | | | Patch written by Martin Richard. | ||||
* | | Issue #22775: Fixed unpickling of http.cookies.SimpleCookie with protocol 2 | Serhiy Storchaka | 2014-11-02 | 1 | -0/+1 |
|\ \ | |/ | | | | | and above. Patch by Tim Graham. | ||||
| * | Issue #22775: Fixed unpickling of http.cookies.SimpleCookie with protocol 2 | Serhiy Storchaka | 2014-11-02 | 1 | -0/+1 |
| | | | | | | | | and above. Patch by Tim Graham. | ||||
* | | #22751: merge with 3.4. | Ezio Melotti | 2014-11-02 | 1 | -0/+1 |
|\ \ | |/ | |||||
| * | #22751: fix test___all__ warning about modified environment in the tests. ↵ | Ezio Melotti | 2014-11-02 | 1 | -0/+1 |
| | | | | | | | | Patch by Michael Cetrulo. | ||||
| * | #22196: link to Enum in the nametuple documentation. Patch by Karmen Dykstra. | Ezio Melotti | 2014-10-28 | 1 | -0/+1 |
| | | |||||
* | | Issue #6623: Remove deprecated Netrc class in the ftplib module. | Berker Peksag | 2014-11-01 | 1 | -0/+1 |
| | | | | | | | | Patch by Matt Chaput. |