summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* bpo-34906: Doc: Fix typos (GH-9712)Stéphane Wirtel2018-10-056-6/+6
* bpo-28441: Ensure `.exe` suffix in `sys.executable` on MinGW and Cygwin (GH-4...E. M. Bray2018-10-052-0/+48
* Fix a typo ssl.py docstring (GH-9697)Matt Eaton2018-10-051-1/+1
* bpo-34871: inspect: Don't pollute sys.modules (GH-9696)INADA Naoki2018-10-042-1/+3
* bpo-34871: Fix two typos in test_inspect.py (GH-9698)Chih-Hsuan Yen2018-10-041-2/+2
* bpo-34740: Get rid of tp_getattro in ossaudiodev.oss_audio_device. (GH-9421)Serhiy Storchaka2018-10-041-35/+34
* bpo-34739: Get rid of tp_getattro in xml.etree.ElementTree.XMLParser. (GH-9420)Serhiy Storchaka2018-10-041-24/+19
* closes bpo-34869: Remove LDLAST. (GH-9667)Benjamin Peterson2018-10-043-14/+8
* bpo-34872: Fix self-cancellation in C implementation of asyncio.Task (GH-9679)Elvis Pranskevichus2018-10-033-3/+45
* bpo-34879: Fix a possible null pointer dereference in bytesobject.c (GH-9683)Zackery Spytz2018-10-032-1/+3
* Make it clear that the msg argument to assertWarns/assertWarnsRegex/assertRai...Benjamin Peterson2018-10-031-3/+3
* bpo-34172: multiprocessing.Pool leaks resources after being deleted (GH-8450)tzickel2018-10-023-24/+57
* bpo-34728: Fix asyncio tests to run under "-Werror" (GH-9661)Yury Selivanov2018-10-0214-206/+192
* Remove recent from logging cookbook (GH-9636)Cheryl Sabella2018-10-021-3/+2
* closes bpo-34862: Guard definition of convert_sched_param with POSIX_SPAWN_SE...William Orr2018-10-022-7/+9
* Make it clear that the msg argument to assertRaises is keyword-only. (GH-9670)Benjamin Peterson2018-10-021-1/+1
* closes bpo-34868: Improve error message with '_' is combined with an invalid ...Benjamin Peterson2018-10-022-8/+12
* bpo-31865: Fix a couple of typos in the html.unescape() docs. (GH-9662)Ezio Melotti2018-10-021-1/+1
* bpo-30167: Add test for module.__cached__ is None (GH-7617)INADA Naoki2018-10-011-0/+11
* bpo-34476: Document that asyncio.sleep() always suspends. (#9643)Hrvoje Nikšić2018-10-011-0/+3
* bpo-30156: Remove property_descr_get() optimization (GH-9541)Victor Stinner2018-10-012-28/+9
* Fix name of argument in docs for functools.reduce(). (#9634)Brendan Jurd2018-10-011-6/+6
* bpo-34850: Replace is with == in idlelib.iomenu (GH-9649)Terry Jan Reedy2018-09-301-2/+2
* bpo-34854: Fix compiling string annotations containing lambdas. (GH-9645)Serhiy Storchaka2018-09-303-5/+11
* bpo-34849: Don't log wating for selector.select in asyncio loop iteration (GH...Andrew Svetlov2018-09-303-47/+4
* Speed-up math.dist() by 30% (GH-9628)Raymond Hettinger2018-09-292-6/+12
* 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