summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Issue #19776: Add a expanduser() method on Path objects.Antoine Pitrou2014-12-304-3/+180
| | | | Patch by Serhiy.
* merge 3.4 (#23130)Benjamin Peterson2014-12-301-405/+0
|\
| * merge 3.3 (#23130)Benjamin Peterson2014-12-301-405/+0
| |\
| | * merge 3.2 (#23130)Benjamin Peterson2014-12-301-405/+0
| | |\
| | | * delete old ftpmirror script, which now has security bugs (closes #23130)Benjamin Peterson2014-12-301-405/+0
| | | |
* | | | merge 3.4Benjamin Peterson2014-12-291-2/+2
|\ \ \ \ | |/ / /
| * | | use a proper m-dashBenjamin Peterson2014-12-291-2/+2
| | | |
* | | | Minor comment clean-upRaymond Hettinger2014-12-291-2/+1
| | | |
* | | | Issue #23125: Update nose project page link.Berker Peksag2014-12-281-1/+1
|\ \ \ \ | |/ / / | | | | | | | | Reported by Damien Marié.
| * | | Issue #23125: Update nose project page link.Berker Peksag2014-12-281-1/+1
| | | | | | | | | | | | | | | | Reported by Damien Marié.
* | | | Small clean-up. Factor-out common code for add, contains, and discard ↵Raymond Hettinger2014-12-271-43/+27
| | | | | | | | | | | | | | | | function pairs.
* | | | Issue #23107: Tighten-up loops in setobject.cRaymond Hettinger2014-12-271-55/+46
| | | | | | | | | | | | | | | | | | | | | | | | * Move the test for an exact key match to after a hash match * Use "used" as a loop counter instead of "fill" * Minor improvements to variable names and code consistency
* | | | Neaten-up setobject.hRaymond Hettinger2014-12-271-45/+39
| | | | | | | | | | | | | | | | | | | | | | | | - Move all Py_LIMITED_API exclusions together under one #ifndef - Group PyAPI_FUNC functions and PyAPI_DATA together. - Bring related comments together and put them in the appropriate section.
* | | | Merge 3.4 (asyncio)Victor Stinner2014-12-2612-84/+105
|\ \ \ \ | |/ / /
| * | | Issue #22926: In debug mode, call_soon(), call_at() and call_later() methods ofVictor Stinner2014-12-266-62/+89
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | asyncio.BaseEventLoop now use the identifier of the current thread to ensure that they are called from the thread running the event loop. Before, the get_event_loop() method was used to check the thread, and no exception was raised when the thread had no event loop. Now the methods always raise an exception in debug mode when called from the wrong thread. It should help to notice misusage of the API.
| * | | asyncio: sync with TulipVictor Stinner2014-12-268-22/+16
| | | | | | | | | | | | | | | | | | | | * Fix pyflakes warnings: remove unused imports and variables * asyncio.test_support now uses test.support and test.script_helper if available
* | | | null merge 3.4Benjamin Peterson2014-12-260-0/+0
|\ \ \ \ | |/ / /
| * | | Issue #22585: On OpenBSD 5.6 and newer, os.urandom() now calls getentropy(),Victor Stinner2014-12-216-9/+56
| | | | | | | | | | | | | | | | instead of reading /dev/urandom, to get pseudo-random bytes.
* | | | merge 3.4 (#23112)Benjamin Peterson2014-12-263-2/+15
|\ \ \ \ | |/ / /
| * | | fix behavior of trailing slash redirection when a query string is involved ↵Benjamin Peterson2014-12-263-2/+15
| | | | | | | | | | | | | | | | (closes #23112)
* | | | #20069: Add tests for os.chown.R David Murray2014-12-251-51/+74
| | | | | | | | | | | | | | | | Patch by Vajrasky Kok.
* | | | Remove the redundant second argument of versionadded directive.Berker Peksag2014-12-251-3/+2
| | | | | | | | | | | | | | | | | | | | The versionadded directive is already placed in the scope of the HTTPStatus documentation.
* | | | Merge: #23040: Clarify treatment of encoding and errors when component is bytes.R David Murray2014-12-252-7/+9
|\ \ \ \ | |/ / /
| * | | #23040: Clarify treatment of encoding and errors when component is bytes.R David Murray2014-12-252-7/+9
| | | | | | | | | | | | | | | | Patch by Wojtek Ruszczewski.
* | | | merge 3.4Benjamin Peterson2014-12-241-2/+2
|\ \ \ \ | |/ / /
| * | | update correct French examples (#23109)Benjamin Peterson2014-12-241-2/+2
| | | |
* | | | merge 3.4 (#23109)Benjamin Peterson2014-12-241-2/+2
|\ \ \ \ | |/ / /
| * | | improve incorrect French (#23109)Benjamin Peterson2014-12-241-2/+2
| | | | | | | | | | | | | | | | Following suggestions from Clément.
* | | | merge 3.4 (#23110)Benjamin Peterson2014-12-241-0/+3
|\ \ \ \ | |/ / /
| * | | doucment that Py_SetPath copies its argument (closes #23110)Benjamin Peterson2014-12-241-0/+3
| | | |
* | | | Issue #21793: Added http.HTTPStatus enums (i.e. HTTPStatus.OK,Serhiy Storchaka2014-12-236-216/+353
| | | | | | | | | | | | | | | | HTTPStatus.NOT_FOUND). Patch by Demian Brecht.
* | | | Merge pip and setuptools upgradeDonald Stufft2014-12-234-2/+2
|\ \ \ \ | |/ / /
| * | | Upgrade pip to 6.0.2 and setuptools to 8.2.1Donald Stufft2014-12-234-2/+2
| | | |
* | | | Merge 3.4 (asyncio)Victor Stinner2014-12-221-3/+7
|\ \ \ \ | |/ / /
| * | | asyncio doc: update also Queue docstringsVictor Stinner2014-12-221-3/+7
| | | |
* | | | Merge 3.4 (asyncio doc)Victor Stinner2014-12-221-8/+13
|\ \ \ \ | |/ / /
| * | | asyncio doc: Fix doc of get and put methods of QueueVictor Stinner2014-12-221-8/+13
| | | |
* | | | merge 3.4 (#23093)Benjamin Peterson2014-12-225-42/+61
|\ \ \ \ | |/ / /
| * | | allow more operations to work on detached streams (closes #23093)Benjamin Peterson2014-12-225-42/+61
| | | | | | | | | | | | | | | | Patch by Martin Panter.
* | | | Issue #22585: On OpenBSD 5.6 and newer, os.urandom() now calls getentropy(),Victor Stinner2014-12-216-6/+50
| | | | | | | | | | | | | | | | instead of reading /dev/urandom, to get pseudo-random bytes.
* | | | Issue #19104: pprint now produces evaluable output for wrapped strings.Serhiy Storchaka2014-12-203-36/+47
|\ \ \ \ | |/ / /
| * | | Issue #19104: pprint now produces evaluable output for wrapped strings.Serhiy Storchaka2014-12-203-36/+47
| | | |
* | | | Null mergeSerhiy Storchaka2014-12-200-0/+0
|\ \ \ \ | |/ / /
| * | | Issue #23071: "namereplace_errors" was added only in 3.5.Serhiy Storchaka2014-12-201-1/+0
| | | |
* | | | Issue #23071: Added missing names to codecs.__all__. Patch by Martin Panter.Serhiy Storchaka2014-12-203-0/+31
|\ \ \ \ | |/ / /
| * | | Issue #23071: Added missing names to codecs.__all__. Patch by Martin Panter.Serhiy Storchaka2014-12-203-1/+32
| | | |
* | | | null merge.Barry Warsaw2014-12-190-0/+0
|\ \ \ \ | |/ / /
| * | | Fix typo.Barry Warsaw2014-12-191-1/+1
| |\ \ \
* | \ \ \ Trunk merge.Barry Warsaw2014-12-192-2/+11
|\ \ \ \ \
| * \ \ \ \ Merge 3.4 (asyncio)Victor Stinner2014-12-192-2/+11
| |\ \ \ \ \ | | |/ / / /