summaryrefslogtreecommitdiffstats
path: root/Misc
Commit message (Collapse)AuthorAgeFilesLines
* Issue #19717: Makes Path.resolve() succeed on paths that do not exist (patch ↵Steve Dower2016-11-091-0/+3
|\ | | | | | | by Vajrasky Kok)
| * Issue #19717: Makes Path.resolve() succeed on paths that do not exist (patch ↵Steve Dower2016-11-091-0/+3
| | | | | | | | by Vajrasky Kok)
| * Merge 3.5 (issue #28652)Yury Selivanov2016-11-091-0/+2
| |\
| | * Issue #28652: Make loop methods reject socket kinds they do not support.Yury Selivanov2016-11-091-0/+2
| | |
* | | Merge 3.6 (issue #27942)Yury Selivanov2016-11-091-0/+2
|\ \ \ | |/ /
| * | Merge 3.5 (issue #27942)Yury Selivanov2016-11-091-0/+2
| |\ \ | | |/
| | * ssue #27942: Fix memory leak in codeobject.cYury Selivanov2016-11-091-0/+2
| | |
| * | Merge 3.5 (issue #28639)Yury Selivanov2016-11-091-0/+3
| |\ \ | | |/
| | * Issue #28639: Fix inspect.isawaitable to always return boolYury Selivanov2016-11-091-0/+3
| | | | | | | | | | | | Patch by Justin Mayfield.
| * | Issue #26081: Fix refleak in _asyncio.Future.__iter__().throw.Yury Selivanov2016-11-091-0/+2
| | |
* | | Merge 3.6 (typo in NEWS)Yury Selivanov2016-11-081-1/+1
|\ \ \ | |/ /
| * | news: Fix a typoYury Selivanov2016-11-081-1/+1
| | |
* | | Merge 3.6 (issue #26182)Yury Selivanov2016-11-081-0/+2
|\ \ \ | |/ /
| * | Issue #26182: Fix ia refleak in code that raises DeprecationWarning.Yury Selivanov2016-11-081-0/+2
| | |
| * | Issue #27243: Change PendingDeprecationWarning -> DeprecationWarning.Yury Selivanov2016-11-081-0/+5
| | | | | | | | | | | | | | | | | | As it was agreed in the issue, __aiter__ returning an awaitable should result in PendingDeprecationWarning in 3.5 and in DeprecationWarning in 3.6.
* | | Issue #28563: Fixed possible DoS and arbitrary code execution when handleSerhiy Storchaka2016-11-081-0/+4
|\ \ \ | |/ / | | | | | | | | | plural form selections in the gettext module. The expression parser now supports exact syntax supported by GNU gettext.
| * | Issue #28563: Fixed possible DoS and arbitrary code execution when handleSerhiy Storchaka2016-11-081-0/+4
| |\ \ | | |/ | | | | | | | | | plural form selections in the gettext module. The expression parser now supports exact syntax supported by GNU gettext.
| * | Merge 3.5 (issue #28634)Yury Selivanov2016-11-071-0/+2
| |\ \ | | |/
* | | Issue #28621: Sped up converting int to float by reusing faster bits countingSerhiy Storchaka2016-11-081-0/+3
| | | | | | | | | | | | implementation. Patch by Adrian Wielgosik.
* | | Closes #27781: Removes special cases for the experimental aspect of PEP 529Steve Dower2016-11-071-2/+2
|\ \ \ | |/ /
| * | Closes #27781: Removes special cases for the experimental aspect of PEP 529Steve Dower2016-11-071-2/+2
| | |
* | | Issue #28485: Merge single-threading fix from 3.6Martin Panter2016-11-051-0/+4
|\ \ \ | |/ /
| * | Issue #28485: Merge single-threading fix from 3.5 into 3.6Martin Panter2016-11-051-0/+4
| |\ \ | | |/
| | * Issue #28485: Check for negative workers even without ProcessPoolExecutorMartin Panter2016-11-051-0/+4
| | | | | | | | | | | | | | | This matches the documentation, and passes the test suite when multithreading is disabled.
* | | Issue #28616: merge from 3.6Ned Deily2016-11-041-0/+1
|\ \ \ | |/ /
| * | Issue #28616: merge from 3.5Ned Deily2016-11-041-0/+1
| |\ \ | | |/
| | * Issue #28616: Correct help for sys.version_info releaselevel component.Ned Deily2016-11-041-0/+1
| | | | | | | | | | | | Patch by Anish Tambe.
| * | Merge 3.5 (issue #28613)Yury Selivanov2016-11-041-0/+3
| |\ \ | | |/
| | * Issue #28613: Fix get_event_loop() to return the current loopYury Selivanov2016-11-041-0/+3
| | | | | | | | | | | | when called from coroutines or callbacks.
| * | Merge 3.5 (issue #28600)Yury Selivanov2016-11-031-0/+2
| |\ \ | | |/
| | * Issue #28600: Optimize loop.call_soon().Yury Selivanov2016-11-031-0/+2
| | | | | | | | | | | | | | | Run expensive type checks only in debug mode. In addition, stop supporting passing handles to loop.run_in_executor.
* | | Issue #28580: Optimize iterating split table values.INADA Naoki2016-11-041-0/+3
| | | | | | | | | | | | Patch by Xiang Zhang.
* | | Issue #28387: Fixed possible crash in _io.TextIOWrapper deallocator whenSerhiy Storchaka2016-11-032-0/+5
|\ \ \ | |/ / | | | | | | | | | the garbage collector is invoked in other thread. Based on patch by Sebastian Cufre.
| * | Issue #28387: Fixed possible crash in _io.TextIOWrapper deallocator whenSerhiy Storchaka2016-11-032-0/+5
| |\ \ | | |/ | | | | | | | | | the garbage collector is invoked in other thread. Based on patch by Sebastian Cufre.
| | * Issue #28387: Fixed possible crash in _io.TextIOWrapper deallocator whenSerhiy Storchaka2016-11-032-0/+5
| | | | | | | | | | | | | | | the garbage collector is invoked in other thread. Based on patch by Sebastian Cufre.
* | | Issue #28513: Documented command-line interface of zipfile.Serhiy Storchaka2016-11-021-0/+5
|\ \ \ | |/ /
| * | Issue #28513: Documented command-line interface of zipfile.Serhiy Storchaka2016-11-021-0/+5
| |\ \ | | |/
| | * Issue #28513: Documented command-line interface of zipfile.Serhiy Storchaka2016-11-021-0/+5
| | |
* | | Issue #28583: PyDict_SetDefault didn't combine split table when needed.INADA Naoki2016-11-021-0/+3
|\ \ \ | |/ / | | | | | | Patch by Xiang Zhang.
| * | Issue #28583: PyDict_SetDefault didn't combine split table when needed.INADA Naoki2016-11-021-0/+3
| | | | | | | | | | | | Patch by Xiang Zhang.
| * | Start 3.6.0b4Ned Deily2016-11-011-0/+12
| | |
| * | Version bump for 3.6.0b3v3.6.0b3Ned Deily2016-11-011-1/+1
| | |
* | | Issue #28248: merge from 3.6Ned Deily2016-10-311-1/+1
|\ \ \ | |/ /
| * | Issue #28248: merge from 3.5Ned Deily2016-10-311-1/+1
| |\ \ | | |/
| | * Issue #28248: Update macOS installer build to use OpenSSL 1.0.2j.Ned Deily2016-10-311-3/+1
| | | | | | | | | | | | Original patch by Mariatta Wijaya.
* | | Issue #28208: merge from 3.6Ned Deily2016-10-311-1/+1
|\ \ \ | |/ /
| * | Issue #28028: Update OS X installers to use SQLite 3.14.2.Ned Deily2016-10-311-1/+1
| | | | | | | | | | | | Patch by Mariatta Wijaya.
| * | Issue 28128: Print out better error/warning messages for invalid string ↵Eric V. Smith2016-10-311-0/+4
| | | | | | | | | | | | escapes. Backport to 3.6.
* | | Issue 28128: Print out better error/warning messages for invalid string escapes.Eric V. Smith2016-10-311-0/+4
| | |
* | | Issue #27517: LZMA compressor and decompressor no longer raise exceptions ifSerhiy Storchaka2016-10-312-0/+4
|\ \ \ | |/ / | | | | | | given empty data twice. Patch by Benjamin Fogle.