summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* | | | Issue #28394: Merge typo fixes from 3.6Martin Panter2016-10-107-7/+7
|\ \ \ \ | |/ / /
| * | | Issue #28394: More typo fixes for 3.6+Martin Panter2016-10-103-3/+3
| | | |
| * | | Issue #28394: Merge typo fixes from 3.5 into 3.6Martin Panter2016-10-104-4/+4
| |\ \ \ | | |/ /
| | * | Issue #28394: Spelling and typo fixes in code comments and changelogMartin Panter2016-10-104-4/+4
| | | | | | | | | | | | | | | | Includes patch by Ville Skyttä.
* | | | Issue #28400: Removed uncessary checks in unicode_char and resize_copy.Serhiy Storchaka2016-10-091-9/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 1. In resize_copy we don't need to PyUnicode_READY(unicode) since when it's not PyUnicode_WCHAR_KIND it should be ready. 2. In unicode_char, PyUnicode_1BYTE_KIND is handled by get_latin1_char. Patch by Xiang Zhang.
* | | | Merge from 3.6.Serhiy Storchaka2016-10-092-109/+108
|\ \ \ \ | |/ / /
| * | | Issue #28183: Optimize and cleanup dict iteration.Serhiy Storchaka2016-10-092-109/+108
| | | |
* | | | Issue #28339: Remove ByteString.register(memoryview(...)) from typing.py. ↵Guido van Rossum2016-10-091-3/+0
|\ \ \ \ | |/ / / | | | | | | | | (merge 3.6->3.7)
| * | | Issue #28339: Remove ByteString.register(memoryview(...)) from typing.py. ↵Guido van Rossum2016-10-091-3/+0
| |\ \ \ | | |/ / | | | | | | | | (merge 3.5->3.6)
| | * | Issue #28339: Remove ByteString.register(memoryview(...)) from typing.py.Guido van Rossum2016-10-091-3/+0
| | | |
* | | | Merge 3.6 (issue #27972)Yury Selivanov2016-10-093-7/+27
|\ \ \ \ | |/ / /
| * | | Merge 3.5 (issue #27972)Yury Selivanov2016-10-093-7/+27
| |\ \ \ | | |/ /
| | * | Issue #27972: Prohibit Tasks to await on themselves.Yury Selivanov2016-10-093-7/+27
| | | |
* | | | Merge 3.6 (issue #28399)Yury Selivanov2016-10-093-5/+21
|\ \ \ \ | |/ / /
| * | | Merge 3.5 (issue #28399)Yury Selivanov2016-10-093-5/+21
| |\ \ \ | | |/ /
| | * | Issue #28399: Remove UNIX socket from FS before binding.Yury Selivanov2016-10-093-5/+21
| | | | | | | | | | | | | | | | Patch by Коренберг Марк.
* | | | Issue #28389: Merge from 3.6Berker Peksag2016-10-091-22/+16
|\ \ \ \ | |/ / /
| * | | Issue #28389: Merge from 3.5Berker Peksag2016-10-091-22/+16
| |\ \ \ | | |/ /
| | * | Issue #28389: Fix ProxiedTransport example in xmlrpc.client documentationBerker Peksag2016-10-091-22/+16
| | | |
* | | | Issue #28379: Removed redundant check.Serhiy Storchaka2016-10-091-4/+0
| | | | | | | | | | | | | | | | Patch by Xiang Zhang.
* | | | Fixed wrong issue number in NEWSINADA Naoki2016-10-091-1/+1
|\ \ \ \ | |/ / /
| * | | Fixed wrong issue number in NEWSINADA Naoki2016-10-091-1/+1
| | | |
* | | | Issue #26801: Added C implementation of asyncio.Future.INADA Naoki2016-10-097-37/+1101
|\ \ \ \ | |/ / / | | | | | | | | Original patch by Yury Selivanov.
| * | | Issue #26801: Added C implementation of asyncio.Future.INADA Naoki2016-10-097-37/+1101
| | | | | | | | | | | | | | | | Original patch by Yury Selivanov.
* | | | Merge further typing.py changes from upstream. (merge 3.6->3.7)Guido van Rossum2016-10-092-1/+83
|\ \ \ \ | |/ / /
| * | | Merge further typing.py changes from upstream. (merge 3.5->3.6)Guido van Rossum2016-10-092-1/+83
| |\ \ \ | | |/ /
| | * | Merge further typing.py changes from upstream.Guido van Rossum2016-10-092-1/+83
| | | |
* | | | null mergeGuido van Rossum2016-10-090-0/+0
|\ \ \ \ | |/ / /
| * | | null mergeGuido van Rossum2016-10-090-0/+0
| |\ \ \ | | |/ /
| | * | Adjust ClassVar example to use pre-PEP-526 syntax. (Issue #28388)Guido van Rossum2016-10-091-2/+2
| | | |
* | | | Issue #28388: update typing module documentation. (merge 3.6->3.7)Guido van Rossum2016-10-091-123/+126
|\ \ \ \ | |/ / /
| * | | Issue #28388: update typing module documentation. (merge 3.5->3.6)Guido van Rossum2016-10-091-123/+126
| |\ \ \ | | |/ /
| | * | Issue #28388: update typing module documentation.Guido van Rossum2016-10-091-122/+125
| | | |
* | | | Merge from 3.6.Serhiy Storchaka2016-10-085-7/+94
|\ \ \ \ | |/ / /
| * | | Merge from 3.5.Serhiy Storchaka2016-10-085-7/+94
| |\ \ \ | | |/ /
| | * | Issue #28379: Added sanity checks and tests for PyUnicode_CopyCharacters().Serhiy Storchaka2016-10-085-7/+94
| | | | | | | | | | | | | | | | Patch by Xiang Zhang.
* | | | Issue #28162: Fixes Ctrl+Z handling in console readall()Steve Dower2016-10-082-36/+51
|\ \ \ \ | |/ / /
| * | | Issue #28162: Fixes Ctrl+Z handling in console readall()Steve Dower2016-10-082-36/+51
| | | |
* | | | Merge with 3.6Steve Dower2016-10-081-1/+2
|\ \ \ \ | |/ / /
| * | | Add proper credit to NEWS file.Steve Dower2016-10-081-1/+2
| | | |
* | | | Issue #28333: Remove unnecessary increment.Steve Dower2016-10-081-1/+1
|\ \ \ \ | |/ / /
| * | | Issue #28333: Remove unnecessary increment.Steve Dower2016-10-081-1/+1
| | | |
* | | | Issue #28333: Enables Unicode for ps1/ps2 and input() prompts. (Patch by ↵Steve Dower2016-10-082-4/+26
|\ \ \ \ | |/ / / | | | | | | | | Eryk Sun)
| * | | Issue #28333: Enables Unicode for ps1/ps2 and input() prompts. (Patch by ↵Steve Dower2016-10-082-4/+26
| | | | | | | | | | | | | | | | Eryk Sun)
* | | | Merge from 3.6.Serhiy Storchaka2016-10-082-0/+5
|\ \ \ \ | |/ / /
| * | | Merge from 3.5.Serhiy Storchaka2016-10-082-0/+5
| |\ \ \ | | |/ /
| | * | Issue #28376: The type of long range iterator is now registered as Iterator.Serhiy Storchaka2016-10-082-0/+5
| | | | | | | | | | | | | | | | Patch by Oren Milman.
* | | | Issue #28376: Creating instances of range_iterator by calling range_iteratorSerhiy Storchaka2016-10-083-75/+7
| | | | | | | | | | | | | | | | | | | | type now is disallowed. Calling iter() on range instance is the only way. Patch by Oren Milman.
* | | | Merge with 3.6.Serhiy Storchaka2016-10-083-3/+57
|\ \ \ \ | |/ / /
| * | | Issue #28376: Creating instances of range_iterator by calling range_iteratorSerhiy Storchaka2016-10-083-23/+36
| | | | | | | | | | | | | | | | type now is deprecated. Patch by Oren Milman.