summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
* bpo-32667: Fix tests when $PATH contains a file (#5322)Victor Stinner2018-01-252-9/+8
* bpo-32360: Remove OrderedDict usage from json.tool (GH-5315)INADA Naoki2018-01-251-6/+1
* bpo-32652: Defer pymain_set_global_config() call (#5303)Victor Stinner2018-01-251-0/+15
* bpo-32391: Implement StreamWriter.wait_closed() (#5281)Andrew Svetlov2018-01-242-10/+57
* bpo-10381: Add timezone to datetime C API (#5032)Paul Ganssle2018-01-241-0/+181
* bpo-29708: Setting SOURCE_DATE_EPOCH forces hash-based .pyc files (GH-5200)Bernhard M. Wiedemann2018-01-242-0/+14
* bpo-32248 - Implement `ResourceReader` and `get_resource_reader()` for zipim...Barry Warsaw2018-01-241-67/+83
* bpo-32636: Fix two bugs in test_asyncio (#5302)Victor Stinner2018-01-242-1/+2
* bpo-32636: Fix @asyncio.coroutine debug mode bug exposed by gh-5250 (#5291)Nathaniel J. Smith2018-01-242-1/+19
* bpo-32410: Improve sock_sendfile tests (#5294)Andrew Svetlov2018-01-241-16/+19
* bpo-32643: Drop support for a few private Task and Future APIs. (#5293)Yury Selivanov2018-01-244-47/+21
* bpo-32360: unittest.util: Use Counter instead of custom count function (GH-4994)Srinivas Reddy Thatiparthy (శ్రీనివాస్ రెడ్డి తాటిపర్తి)2018-01-241-9/+2
* bpo-32502: Discard 64-bit (and other invalid) hardware addresses (#5254)Bo Bayles2018-01-242-6/+36
* bpo-32618: Fix test_mutatingdecodehandler not testing test.mutating (#5269)Xiang Zhang2018-01-231-3/+2
* bpo-32633: Fix some warnings in test_asyncio.test_tasks (#5280)Nathaniel J. Smith2018-01-231-2/+8
* bpo-32436: Implement PEP 567 (#5027)Yury Selivanov2018-01-2313-59/+1241
* bpo-32593: Drop FreeBSD 9 and older support (#5232)Victor Stinner2018-01-2210-50/+5
* bpo-31179: Make dict.copy() up to 5.5 times faster. (#3067)Yury Selivanov2018-01-221-2/+48
* bpo-31801: Enum: add _ignore_ as class option (#5237)Ethan Furman2018-01-222-1/+52
* urllib.request: Remove unused import (GH-5268)INADA Naoki2018-01-221-1/+0
* bpo-32314: Fix asyncio.run() to cancel runinng tasks on shutdown (#5262)Yury Selivanov2018-01-214-15/+122
* bpo-32591: Add native coroutine origin tracking (#5250)Nathaniel J. Smith2018-01-215-96/+176
* bpo-32503: Avoid creating too small frames in pickles. (#5127)Serhiy Storchaka2018-01-202-42/+52
* bpo-32602: Test ECDSA certs (#5247)Christian Heimes2018-01-2020-440/+1048
* bpo-32226: PEP 560: improve typing module (#4906)Ivan Levkivskyi2018-01-205-1626/+757
* bpo-32028: Fix suggestions for indented print statements (GH-4688)Sanyam Khurana2018-01-201-0/+9
* bpo-32596: Lazy import concurrent.futures.process and thread (GH-5241)INADA Naoki2018-01-201-2/+33
* bpo-32410: Make SendfileNotAvailableError exception public (#5243)Andrew Svetlov2018-01-195-24/+29
* bpo-32588: Move _findvs into its own module and add missing _queue module to ...Steve Dower2018-01-182-7/+6
* bpo-32576: use queue.SimpleQueue in critical places (#5216)Antoine Pitrou2018-01-182-9/+12
* Use assertCountEqual instead of assertEqual. (#5223)Gregory P. Smith2018-01-171-3/+3
* pythoninfo: add time.time and datetime.datetime.now (#5214)Victor Stinner2018-01-171-1/+13
* bpo-32248: Fix test_importlib.test_open() (#5213)Victor Stinner2018-01-171-2/+2
* bpo-32403: Faster date and datetime constructors (#4993)Paul Ganssle2018-01-161-0/+92
* bpo-32410: Implement loop.sock_sendfile() (#4976)Andrew Svetlov2018-01-166-0/+578
* Skip test_readline.test_nonascii() on C locale (#5203)Victor Stinner2018-01-161-0/+8
* bpo-14976: Reentrant simple queue (#3346)Antoine Pitrou2018-01-152-8/+318
* Implement the get_resource_reader() API for file system imports (#5168)Barry Warsaw2018-01-155-10/+44
* Make asyncio tests run when there's no SSL module (#5196)Yury Selivanov2018-01-151-3/+0
* Add itertools recipe for directly finding the n-th combination (#5161)Raymond Hettinger2018-01-131-0/+33
* bpo-32248: Introduce the concept of Loader.get_resource_reader() (GH-5108)Brett Cannon2018-01-121-2/+7
* bpo-31993: Do not use memoryview when pickle large strings. (#5154)Serhiy Storchaka2018-01-121-30/+30
* bpo-32473: Improve ABCMeta._dump_registry() readability (GH-5091)yahya-abou-imran2018-01-121-1/+3
* OrderedDict import is no longer needed (#4890)Raymond Hettinger2018-01-121-2/+1
* bpo-32467: Let collections.abc.ValuesView inherit from Collection (#5152)Raymond Hettinger2018-01-122-3/+3
* bpo-31113: Get rid of recursion in the compiler for normal control flow. (#3015)Serhiy Storchaka2018-01-111-0/+5
* bpo-31993: Do not create frames for large bytes and str objects (#5114)Serhiy Storchaka2018-01-112-10/+11
* bpo-32320: Add default value support to collections.namedtuple() (#4859)Raymond Hettinger2018-01-112-3/+68
* Fix obvious typos in docstrings (#5151)Raymond Hettinger2018-01-111-6/+7
* bpo-29240: readline now ignores the UTF-8 Mode (#5145)Victor Stinner2018-01-101-2/+0