Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fixed tests on Windows for issue #21883. | Serhiy Storchaka | 2014-10-04 | 3 | -3/+4 |
| | |||||
* | Fixed issue number for issue #22470 in Misc/NEWS. | Serhiy Storchaka | 2014-10-04 | 1 | -1/+1 |
|\ | |||||
| * | Fixed issue number for issue #22470 in Misc/NEWS. | Serhiy Storchaka | 2014-10-04 | 1 | -1/+1 |
| | | |||||
* | | Issue #21883: os.path.join() and os.path.relpath() now raise a TypeError with | Serhiy Storchaka | 2014-10-04 | 8 | -91/+137 |
| | | | | | | | | more helpful error message for unsupported or mismatched types of arguments. | ||||
* | | Null merge | Serhiy Storchaka | 2014-10-04 | 0 | -0/+0 |
|\ \ | |/ | |||||
| * | Merge heads | Serhiy Storchaka | 2014-10-04 | 2 | -14/+14 |
| |\ | |||||
* | \ | Merge heads | Serhiy Storchaka | 2014-10-04 | 2 | -14/+14 |
|\ \ \ | |||||
| * \ \ | Merge packaging doc updates from 3.4 | Nick Coghlan | 2014-10-04 | 2 | -14/+14 |
| |\ \ \ | | | |/ | | |/| | |||||
| | * | | Realign packaging docs with PyPUG changes | Nick Coghlan | 2014-10-04 | 2 | -14/+14 |
| | | | | |||||
* | | | | Issue #22518: Fixed integer overflow issues in "backslashreplace", | Serhiy Storchaka | 2014-10-04 | 2 | -2/+11 |
|\ \ \ \ | |/ / / |/| | / | | |/ | |/| | "xmlcharrefreplace", and "surrogatepass" error handlers. | ||||
| * | | Issue #22518: Fixed integer overflow issues in "backslashreplace", | Serhiy Storchaka | 2014-10-04 | 2 | -2/+11 |
| |/ | | | | | | | "xmlcharrefreplace", and "surrogatepass" error handlers. | ||||
* | | Issue #22219: The zipfile module CLI now adds entries for directories | Serhiy Storchaka | 2014-10-04 | 2 | -2/+12 |
|\ \ | |/ | | | | | (including empty directories) in ZIP file. | ||||
| * | Issue #22219: The zipfile module CLI now adds entries for directories | Serhiy Storchaka | 2014-10-04 | 2 | -2/+12 |
| | | | | | | | | (including empty directories) in ZIP file. | ||||
* | | Merge: #14056: Small improvements to the tarfile documentation. | R David Murray | 2014-10-04 | 1 | -10/+13 |
|\ \ | |/ | |||||
| * | #14056: Small improvements to the tarfile documentation. | R David Murray | 2014-10-04 | 1 | -10/+13 |
| | | | | | | | | Patch by Éric Araujo with help from Lars Gustäbel. | ||||
* | | merge 3.4 | Benjamin Peterson | 2014-10-03 | 1 | -0/+15 |
|\ \ | |/ | |||||
| * | separate cert loading tests into Windows and non-Windows cases | Benjamin Peterson | 2014-10-03 | 1 | -0/+15 |
| | | |||||
* | | merge 3.4 (#22449) | Benjamin Peterson | 2014-10-03 | 3 | -2/+12 |
|\ \ | |/ | |||||
| * | also use openssl envvars to find certs on windows (closes #22449) | Benjamin Peterson | 2014-10-03 | 3 | -2/+12 |
| | | | | | | | | Patch by Christian Heimes and Alex Gaynor. | ||||
* | | #22508: Drop email __version__ string. It no longer means anything. | R David Murray | 2014-10-03 | 3 | -2/+12 |
| | | | | | | | | | | | | A debian code search (by Tshepang Lekhonkhobe) turned up only one package checking email.__version__...and it was the 2.7-only mailman package. Since Barry approves this change, it seems safe enough to make it... | ||||
* | | Merge with 3.4 | Zachary Ware | 2014-10-03 | 1 | -3/+3 |
|\ \ | |/ | |||||
| * | Fix a few typo/grammar issues in the multiprocessing docs. | Zachary Ware | 2014-10-03 | 1 | -3/+3 |
| | | | | | | | | Reported by Scott Hinton on docs@. | ||||
* | | Merge: #12780: update inspect test skipIf for PEP 3147. | R David Murray | 2014-10-03 | 1 | -4/+5 |
|\ \ | |/ | |||||
| * | #12780: update inspect test skipIf for PEP 3147. | R David Murray | 2014-10-03 | 1 | -4/+5 |
| | | | | | | | | | | | | | | | | | | | | | | | | The test needs to be skipped if unicodedata is either part of the main binary (a repackaging of cpython on Windows?) or has python source (pypy?). PEP 3147 makes __file__ point to the .py source, so we need to change the extension check from looking for the old .pyc/.pyo to just looking for .py. Note that this skip should never trigger on CPython itself, so one could argue it should be dropped instead. But since it exists, why risk breaking someone else's python. | ||||
* | | faulthandler: enhance dump_ascii() to escape also non-printable ASCII | Victor Stinner | 2014-10-03 | 1 | -4/+5 |
| | | | | | | | | characters (U+0000..U+001f and U+007f). | ||||
* | | Make test_datetime a better citizen (issue #22540) | Antoine Pitrou | 2014-10-03 | 2 | -6/+6 |
| | | |||||
* | | Closes #22540: speed up PyObject_IsInstance and PyObject_IsSubclass in the ↵ | Georg Brandl | 2014-10-03 | 2 | -0/+18 |
| | | | | | | | | common case that the second argument has metaclass "type". | ||||
* | | Merge: #8473: Add tests that doctest uses universal newlines in testfile. | R David Murray | 2014-10-03 | 1 | -0/+30 |
|\ \ | |/ | |||||
| * | #8473: Add tests that doctest uses universal newlines in testfile. | R David Murray | 2014-10-03 | 1 | -0/+30 |
| | | | | | | | | Python3 does not have the bug covered by the issue. | ||||
* | | merge 3.4 | Georg Brandl | 2014-10-02 | 0 | -0/+0 |
|\ \ | |/ | |||||
| * | Closes #18729: minor markup improvement. | Georg Brandl | 2014-10-02 | 1 | -1/+1 |
| | | |||||
* | | merge 3.4 | Georg Brandl | 2014-10-02 | 1 | -1/+1 |
|\ \ | |/ | |||||
| * | Closes #19434: fix copy-paste error in MIMENonMultipart docstring. | Georg Brandl | 2014-10-02 | 1 | -1/+1 |
| | | |||||
* | | Issue #20079: Fixed tests. | Serhiy Storchaka | 2014-10-02 | 1 | -1/+1 |
|\ \ | |/ | |||||
| * | Issue #20079: Fixed tests. | Serhiy Storchaka | 2014-10-02 | 1 | -1/+1 |
| | | |||||
* | | Issue #20079: Updated alias mapping to glibc 2.19 SUPPORTED file. | Serhiy Storchaka | 2014-10-02 | 1 | -1/+11 |
|\ \ | |/ | |||||
| * | Issue #20079: Updated alias mapping to glibc 2.19 SUPPORTED file. | Serhiy Storchaka | 2014-10-02 | 1 | -1/+11 |
| | | |||||
* | | Issue #20079: makelocalealias.py now supports installed SUPPORTED file, | Serhiy Storchaka | 2014-10-02 | 1 | -8/+12 |
| | | | | | | | | not only source SUPPORTED file in glibc sources tree. | ||||
* | | Issue #20076: Apply optimization in makelocalealias.py repeatedly. | Serhiy Storchaka | 2014-10-02 | 2 | -2/+6 |
|\ \ | |/ | | | | | | | Remove just added the sr_rs.utf8@latn alias because it is derived from sr_rs@latin. | ||||
| * | Issue #20076: Remove just added the sr_rs.utf8@latn alias because it is | Serhiy Storchaka | 2014-10-02 | 1 | -1/+0 |
| | | | | | | | | derived from sr_rs@latin. | ||||
* | | merge with 3.4 | Georg Brandl | 2014-10-02 | 2 | -0/+8 |
|\ \ | |/ | |||||
| * | closes #22528: add source links to symtable and compileall | Georg Brandl | 2014-10-02 | 2 | -0/+8 |
| | | |||||
* | | merge with 3.4 | Georg Brandl | 2014-10-02 | 1 | -4/+4 |
|\ \ | |/ | |||||
| * | Closes #19342: improve docstrings in grp module. | Georg Brandl | 2014-10-02 | 1 | -6/+6 |
| | | |||||
* | | merge with 3.4 | Georg Brandl | 2014-10-02 | 1 | -7/+1 |
|\ \ | |/ | |||||
| * | Remove unused and now removed config value. | Georg Brandl | 2014-10-02 | 1 | -7/+1 |
| | | |||||
* | | Merge with 3.4 | Terry Jan Reedy | 2014-10-02 | 1 | -13/+18 |
|\ \ | |/ | |||||
| * | Issue #21971: Index and update turtledemo doc. | Terry Jan Reedy | 2014-10-02 | 1 | -13/+18 |
| | | |||||
* | | - Issue #17219: Add library build dir for Python extension cross-builds. | doko@ubuntu.com | 2014-10-02 | 2 | -1/+3 |
|\ \ | |/ | |||||
| * | - Issue #17219: Add library build dir for Python extension cross-builds. | doko@ubuntu.com | 2014-10-02 | 2 | -1/+3 |
| | |