summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* bpo-39386: Prevent double awaiting of async iterator (GH-18081)Miss Islington (bot)2020-01-203-4/+49
* Fix asyncio.get_event_loop() documentation (GH-18051)Miss Islington (bot)2020-01-202-2/+6
* bpo-38400 Don't check for NULL linked list pointers in _PyObject_IsFreed (GH-...Miss Islington (bot)2020-01-191-1/+4
* bpo-35561: Supress valgrind false alarm on epoll_ctl(event) (GH-18060)Miss Islington (bot)2020-01-191-0/+8
* Fix typo from base to based (GH-18055)Miss Islington (bot)2020-01-191-1/+1
* Fix Lock.locked() to remove extra bold highlighting (GH-18042) (#18043)Miss Islington (bot)2020-01-171-0/+1
* bpo-39348: Fix code highlight for the SOCK_NONBLOCK example (GH-18018)Miss Islington (bot)2020-01-161-1/+3
* [3.8] Fix typo in multiprocessing.pool.AsyncResult.successful doc. (GH-17932)...Miss Islington (bot)2020-01-151-1/+1
* Fix compiler warning on Windows (GH-18012)Miss Islington (bot)2020-01-151-1/+1
* Fix documentation in code.py (GH-17988)Miss Islington (bot)2020-01-142-2/+2
* [3.8] bpo-39033: Fix NameError in zipimport during hash validation (GH-17588)...Karthikeyan Singaravelan2020-01-144-272/+287
* bpo-39310: Update sys.float_info documentation (GH-17982)Victor Stinner2020-01-131-8/+8
* bpo-39307: Fix memory leak on error path in parsetok (GH-17953)Miss Islington (bot)2020-01-131-0/+1
* [3.8] Fix typos in Misc/NEWS.d (GH-17930)toonarmycaptain2020-01-122-5/+5
* bpo-3530: Add advice on when to correctly use fix_missing_locations in the AS...Miss Islington (bot)2020-01-122-1/+11
* bpo-38293: Allow shallow and deep copying of property objects (GH-16438)Miss Islington (bot)2020-01-123-3/+5
* bpo-16575: Disabled checks for union types being passed by value. (GH-17960) ...Miss Islington (bot)2020-01-122-1/+20
* bpo-38356: Fix ThreadedChildWatcher thread leak in test_asyncio (GH-16552)Miss Islington (bot)2020-01-121-1/+8
* bpo-39233: Update positional-only section in the glossary (GH-17874)Miss Islington (bot)2020-01-121-3/+5
* bpo-39297: Update for importlib_metadata 1.4. (GH-17947) (GH-17952)Miss Islington (bot)2020-01-112-36/+73
* Fix host in address of socket.create_server example. (GH-17706)Miss Islington (bot)2020-01-111-1/+1
* [3.8] Add test cases for dataclasses. (GH-17909) (GH-17919)Miss Islington (bot)2020-01-101-0/+19
* bpo-39235: Fix end location for genexp in call args (GH-17925)Miss Islington (bot)2020-01-092-8/+10
* Fix typo in test's docstring (GH-17856) (GH-17923)Miss Islington (bot)2020-01-091-1/+1
* bpo-25172: Reduce scope of crypt import tests (GH-17881)Miss Islington (bot)2020-01-091-4/+5
* bpo-39161: Document multi-phase init modules under Py_NewInterpreter() (GH-17...Miss Islington (bot)2020-01-091-17/+35
* closes bpo-39262: Use specific out-of-memory message in _sharedexception_bind...Miss Islington (bot)2020-01-091-2/+4
* bpo-39242: Updated the Gmane domain into news.gmane.io (GH-17903)Miss Islington (bot)2020-01-084-7/+10
* bpo-38871: Fix lib2to3 for filter-based statements that contain lambda (GH-17...Miss Islington (bot)2020-01-073-3/+14
* bpo-39198: Ensure logging global lock is released on exception in isEnabledFo...Miss Islington (bot)2020-01-072-6/+10
* [3.8] bpo-39191: Fix RuntimeWarning in asyncio test (GH-17863) (#17894)Andrew Svetlov2020-01-072-5/+9
* bpo-38623: Doc: Add section for site module CLI. (GH-17858)Miss Islington (bot)2020-01-071-2/+7
* Doc: Change Python 2 status to EOL. (GH-17885)Miss Islington (bot)2020-01-071-1/+1
* bpo-39041: Fix coverage upload command for GitHub Actions (GH-17873)Miss Islington (bot)2020-01-061-1/+1
* bpo-29778: Fix incorrect NULL check in _PyPathConfig_InitDLLPath() (GH-17818)Miss Islington (bot)2020-01-061-1/+1
* bpo-39041: Add GitHub Actions support (GH-17594)Miss Islington (bot)2020-01-065-3/+238
* bpo-39209: Manage correctly multi-line tokens in interactive mode (GH-17860)Miss Islington (bot)2020-01-063-0/+40
* bpo-38907: Suppress any exception when attempting to set V6ONLY. (GH-17864) (...Miss Islington (bot)2020-01-061-1/+5
* bpo-38907: In http.server script, restore binding to IPv4 on Windows. (GH-178...Miss Islington (bot)2020-01-062-1/+14
* Minor formatting improvements and fixes to idle.rst (GH-17165)Miss Islington (bot)2020-01-062-14/+16
* bpo-39130: Dict reversed was added in v3.8 so should say in the doc as well (...Miss Islington (bot)2020-01-051-0/+2
* Fix the parameter list of object. _rpow_ (GH-GH-16477)Miss Islington (bot)2020-01-051-1/+1
* Replace links in howto/pyporting.rst with sphinx references (GH-17781)Miss Islington (bot)2020-01-051-7/+3
* Fix constant folding optimization for positional only arguments (GH-17837)Miss Islington (bot)2020-01-053-0/+15
* bpo-39152: add missing ttk.Scale.configure return value (GH-17815)Miss Islington (bot)2020-01-053-11/+9
* bpo-39055: Reject a trailing \n in base64.b64decode() with validate=True. (GH...Miss Islington (bot)2020-01-053-1/+4
* bpo-39056: Fix handling invalid warning category in the -W option. (GH-17618)Miss Islington (bot)2020-01-053-17/+38
* bpo-39057: Fix urllib.request.proxy_bypass_environment(). (GH-17619)Miss Islington (bot)2020-01-054-13/+39
* Fix SystemError when nested function has annotation on positional-only argume...Miss Islington (bot)2020-01-053-0/+11
* [3.8] bpo-39191: Don't spawn a task before failing (GH-17796) (GH-17820)Andrew Svetlov2020-01-042-3/+10