summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* [3.8] bpo-39234: `enum.auto()` default initial value as 1 (GH-17878)backport-24bcefc-3.8YoSTEALTH2020-01-061-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-052-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-043-0/+11
* [3.8] bpo-39191: Don't spawn a task before failing (GH-17796) (GH-17820)Andrew Svetlov2020-01-042-3/+10
* bpo-38532: Add missing decrefs in PyCFuncPtr_FromDll() (GH-17811)Miss Islington (bot)2020-01-031-0/+2
* Update copyright year in macOS installer license copy (GH-17806)Miss Islington (bot)2020-01-021-3/+3
* Bring Python into the next decade. (GH-17801)Miss Islington (bot)2020-01-028-9/+9
* bpo-39183: Fix formatting in library/ensurepip (GH-17787)Miss Islington (bot)2020-01-011-1/+1
* bpo-39142: Avoid converting namedtuple instances to ConvertingTuple. (GH-1777...Miss Islington (bot)2020-01-013-1/+37
* Document CodeType.replace (GH-17776)Miss Islington (bot)2019-12-313-5/+11
* bpo-39176: Improve error message for 'named assignment' (GH-17777) (GH-17778)Miss Islington (bot)2019-12-313-4/+4
* Fix idlelib README typo. (GH-17770)Miss Islington (bot)2019-12-311-1/+1
* [3.8] bpo-38588: Fix possible crashes in dict and list when calling P… (GH-...Dong-hee Na2019-12-315-1/+50
* closes bpo-37446: resolve undefined behavior in Python/hamt.c (GH-17727)Miss Islington (bot)2019-12-301-1/+1
* bpo-34118: memoryview, range, and tuple are classes (GH-17761)Miss Islington (bot)2019-12-302-3/+5
* bpo-38610: Fix possible crashes in several list methods (GH-17022)Miss Islington (bot)2019-12-303-3/+40
* bpo-39037: Fix lookup order of magic methods in with statement documentation ...Miss Islington (bot)2019-12-291-18/+49
* Fix typos and remove deprecated deprecation warning. (GH-17741)Miss Islington (bot)2019-12-291-11/+4
* [3.8] bpo-39136: Fixed typos (GH-17720)Terry Jan Reedy2019-12-285-6/+6
* Reorder entries in Misc/ACKS (GH-17663) (GH-17673)Éric Araujo2019-12-281-11/+12
* bpo-38731: Fix function signature of quiet in docs (GH-17719)Miss Islington (bot)2019-12-271-1/+1
* bpo-39144 Align ctags and etags behaviours in the makefile and include Python...Miss Islington (bot)2019-12-272-0/+4
* closes bpo-30364: Replace deprecated no_address_safety_analysis attribute. (G...Miss Islington (bot)2019-12-261-7/+7
* [3.8] closes bpo-39135: Remove 'time.clock()' mention in docs. (GH-17713)Benjamin Peterson2019-12-261-1/+0
* bpo-33961: Adjusted dataclasses docs to correct exceptions raised. (GH-7917) ...Miss Islington (bot)2019-12-251-3/+4
* Fix the miscellaneous typo (GH-17700)Miss Islington (bot)2019-12-251-1/+1
* bpo-38753: AsyncMock added in version 3.8 (GH-17102)Miss Islington (bot)2019-12-241-0/+1
* Minor C API documentation improvements. (GH-17697)Miss Islington (bot)2019-12-242-2/+2
* Fix import path for asyncio.TimeoutError (GH-17691)Miss Islington (bot)2019-12-242-2/+3
* [3.8] bpo-38878: Fix os.PathLike __subclasshook__ (GH-17336) (GH-17684)Bar Harel2019-12-233-1/+15
* Doc typo (GH-17667) (#17668)Miss Islington (bot)2019-12-231-1/+1
* [typo] fix dupe in datetime.fromisoformat docs (GH-17295)Miss Islington (bot)2019-12-231-2/+0
* Add missing markup (GH-17680)Miss Islington (bot)2019-12-221-1/+1
* bpo-38918: Add __module__ entry for function & method type in inspect docs ta...Miss Islington (bot)2019-12-202-0/+9
* [3.8] bpo-38316: Fix co_stacksize documentation (GH-16983) (GH-17661)Batuhan Taşkaya2019-12-191-2/+2
* Post 3.8.1Łukasz Langa2019-12-191-1/+1