summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
...
* bpo-27351: Fix ConfigParser.read() documentation and docstring (GH-8123)Zackery Spytz2018-09-292-9/+10
* bpo-31370: Remove references to threadless builds (#8805)Zackery Spytz2018-09-294-19/+10
* Fix astuple in dataclasses documentation (GH-9631)방성범 (Bang Seongbeom)2018-09-291-1/+1
* Fix incorrect error handling in _pickle.Unpickler.__init__() (GH-9630)Zackery Spytz2018-09-291-1/+1
* bpo-34797: Convert heapq to the argument clinic (GH-9560)Pablo Galindo2018-09-282-67/+296
* bpo-34687: Update asyncio doc for ProactorEventLoop (GH-9623)Victor Stinner2018-09-283-17/+0
* bpo-34521: Fix tests in test_multiprocessing_spawn to use correctly CMSG_SPAC...Pablo Galindo2018-09-281-1/+1
* bpo-34736: improve error message for invalid length b64decode inputs (GH-9563)Tal Einat2018-09-282-4/+12
* bpo-34248: Add filename to error raised in {gnu,ndbm}.open() (GH-8590)Zsolt Cserna2018-09-275-2/+18
* bpo-34802: Fix asyncio.iscoroutine() docs (GH-9611)Yury Selivanov2018-09-271-2/+1
* bpo-34762: Update PyContext* to PyObject* in asyncio and decimal (GH-9609)Yury Selivanov2018-09-272-12/+11
* bpo-32892: Use ast.Constant instead of specific constant AST types. (GH-9445)Serhiy Storchaka2018-09-2720-678/+337
* bpo-34819: Use a monotonic clock to compute timeouts in concurrent.futures (G...orlnub1232018-09-272-4/+5
* Fix tests in test_socket to use correctly CMSG_LEN (GH-9594)Pablo Galindo2018-09-271-2/+3
* bpo-31425: fix versionadded in docs and add attribution in NEWS (GH-9595)Tal Einat2018-09-262-2/+2
* Clarify that Type[SomeTypeVar] is legal (#9585)Michael Lee2018-09-261-3/+6
* bpo-31425: Expose AF_QIPCRTR in socket module (GH-3706)Bjorn Andersson2018-09-268-2/+154
* bpo-34320: Fix dict(o) didn't copy order of dict subclass (GH-8624)INADA Naoki2018-09-265-1/+60
* bpo-34334: Don't log traceback twice in QueueHandler (GH-9537)Cheryl Sabella2018-09-254-5/+23
* asyncio/docs: Replace Python 4.0 -> 3.10 (GH-9579)Yury Selivanov2018-09-252-11/+11
* bpo-5950: Support reading zips with comments in zipimport (#9548)Zackery Spytz2018-09-255-1012/+1083
* bpo-34790: [docs] Passing coroutines to asyncio.wait() can be confusing. (GH-...Yury Selivanov2018-09-252-4/+37
* bpo-34162: idlelib/NEWS.txt entry for squeezer (GH-9573)Terry Jan Reedy2018-09-251-0/+7
* bpo-1529353: IDLE - Squeezer What's New for 3.8 (#9572)Terry Jan Reedy2018-09-251-0/+14
* bpo-1529353: IDLE - Squeezer What's New for 3.7.1 (#9568)Terry Jan Reedy2018-09-251-2/+11
* bpo-1529353: IDLE: Squeezer What's New for 3.6.7 (#9567)Terry Jan Reedy2018-09-251-2/+11
* bpo-33937: Catch ENOMEM error in test_socket (#9557)Victor Stinner2018-09-251-2/+13
* bpo-34687: Make asynico use ProactorEventLoop by default (GH-9538)Victor Stinner2018-09-257-14/+30
* bpo-32557: allow shutil.disk_usage to take a file path on Windows also (GH-9372)Joe Pamer2018-09-254-4/+34
* bpo-1529353: IDLE: squeeze large output in the shell (GH-7626)Tal Einat2018-09-2511-29/+974
* Improved the more elaborate multiprocessing example in the logging cookbook (...Géry Ogam2018-09-251-29/+29
* bpo-34770: Fix a possible null pointer dereference in pyshellext.cpp (GH-9497)Zackery Spytz2018-09-252-0/+6
* Fix wrong exception reference: BrokenThreadPool -> BrokenProcessPool (GH-9533)Joni Kähärä2018-09-251-1/+1
* bpo-34162: Update idlelib/NEWS.txt to 2018-9-24. (GH-9551)Terry Jan Reedy2018-09-251-2/+15
* bpo-34162: Add entry for idlelib/NEWS.txt already included for 3.6/3.7 (GH-9549)Terry Jan Reedy2018-09-241-0/+5
* bpo-34683: Make SyntaxError column offsets consistently 1-indexed (gh-9338)Ammar Askar2018-09-2411-21/+65
* bpo-34791: xml package obeys ignore env flags (GH-9544)Christian Heimes2018-09-243-2/+7
* bpo-34783: Add test_cmd_line_script.test_nonexisting_script() (GH-9535)Victor Stinner2018-09-241-0/+19
* bpo-34582: Fixes Python version used for patch check (GH-9532)Steve Dower2018-09-241-1/+1
* Update Azure Pipelines badge (GH-9529)Steve Dower2018-09-241-10/+2
* bpo-34582: Update syntax of Azure Pipelines builds (GH-9521)Steve Dower2018-09-2418-542/+503
* bpo-24937: Replace the extension module porting HOWTO by links to external pr...Petr Viktorin2018-09-243-385/+18
* bpo-34728: Remove deprecate *loop* argument in asyncio.sleep (GH-9415)João Júnior2018-09-243-3/+47
* Migrate datetime.date.fromtimestamp to Argument Clinic (GH-8535)Tim Hoffmann2018-09-244-18/+35
* bpo-34659: Adds initial kwarg to itertools.accumulate() (GH-9345)Lisa Roach2018-09-245-19/+65
* bpo-34548: IDLE: use configured theme colors in TextView (GH-9008)Tal Einat2018-09-233-9/+12
* Use in-memory streams instead of NamedTemporaryFile. (GH-9508)Serhiy Storchaka2018-09-231-4/+6
* bpo-17239: Disable external entities in SAX parser (GH-9217)Christian Heimes2018-09-239-5/+120
* bpo-34670: Add TLS 1.3 post handshake auth (GH-9460)Christian Heimes2018-09-239-16/+370
* bpo-34421: Improve distutils logging for non-ASCII strings. (GH-9126)Serhiy Storchaka2018-09-232-24/+29