summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* bpo-40791: Use CRYPTO_memcmp() for compare_digest (#20456)Christian Heimes2020-05-277-37/+221
* bpo-30064: Fix asyncio loop.sock_* race condition issue (#20369)Fantix King2020-05-273-16/+157
* Refactor error handling code in Parser/pegen/pegen.c (GH-20440)Lysandros Nikolaou2020-05-271-3/+8
* bpo-13097: ctypes: limit callback to 1024 arguments (GH-19914)Sean Gillespie2020-05-273-0/+31
* bpo-39573: Convert Py_REFCNT and Py_SIZE to functions (GH-20429)Victor Stinner2020-05-276-14/+44
* bpo-37999: Fix outdated __int__ and nb_int references in comments (GH-20449)Mark Dickinson2020-05-272-38/+33
* Upgrade bundled versions of pip & setuptools (#16782)Xavier Fernandez2020-05-275-6/+7
* Fix the link to ncurses patch download in macos installer build script (GH-20...Oleg Höfling2020-05-271-1/+1
* bpo-40217: Ensure Py_VISIT(Py_TYPE(self)) is always called for PyType_FromSp...Pablo Galindo2020-05-2712-94/+87
* Fix lookahead of soft keywords in the PEG parser (GH-20436)Pablo Galindo2020-05-264-2/+31
* bpo-40611: Adds MAP_POPULATE to the mmap module (GH-20061)Ethan Steinberg2020-05-263-1/+25
* Add soft keywords (GH-20370)Guido van Rossum2020-05-264-4/+75
* bpo-37999: No longer use __int__ in implicit integer conversions. (GH-15636)Serhiy Storchaka2020-05-2687-2937/+226
* bpo-40756: Default second argument of LoggerAdapter.__init__ to None (GH-20362)Arturo Escaip2020-05-262-1/+3
* bpo-39244: multiprocessing return default start method first on macOS (GH-18625)idomic2020-05-263-4/+9
* bpo-40737: Fix possible reference leak for sqlite3 initialization (GH-20323)Erlend Egeberg Aasland2020-05-262-8/+13
* bpo-40637: Fix test_pbkdf2_hmac_py for missing sha1 (#20422)Christian Heimes2020-05-261-9/+23
* bpo-39301: State that floor division is used for right shift operations (GH-2...Zackery Spytz2020-05-261-4/+2
* Remove duplicated words words (GH-20413)Serhiy Storchaka2020-05-266-6/+6
* bpo-40745: Fix typos in NewType docs (GH-20379)ziheng2020-05-261-2/+2
* Simplify creation of the __new__ method in namedtuple() (GH-20361)Raymond Hettinger2020-05-261-4/+2
* Fix peg_generator compiler warnings under MSVC (GH-20405)Ammar Askar2020-05-262-8/+4
* closes bpo-40774: Fix docs indentation for asyncio.create_subprocess_shell() ...sth2020-05-261-8/+8
* bpo-38964: Print correct filename on a SyntaxError in an fstring (GH-20399)Lysandros Nikolaou2020-05-263-5/+16
* [workflow] Use Sphinx problem matcher on GitHub docs builds (GH-20325)Ammar Askar2020-05-252-1/+43
* bpo-40688: Use the correct parser in the peg_generator scripts (GH-20235)Lysandros Nikolaou2020-05-256-172/+136
* bpo-23082: Better error message for PurePath.relative_to() from pathlib (GH-1...Rotuna2020-05-253-2/+6
* Closes bpo-40558: update CONTRIBUTING.rst to reflect current branches (GH-19989)Hai Shi2020-05-251-6/+6
* bpo-40750: Do not expand the new parser debug flags if Py_BUILD_CORE is not d...Pablo Galindo2020-05-252-2/+2
* bpo-40750: Support -d flag in the new parser (GH-20340)Pablo Galindo2020-05-256-48/+4440
* bpo-39573: Fix buildbot failure for tupleobject.c (GH-20391)Dong-hee Na2020-05-251-1/+1
* bpo-39573: Convert Py_TYPE() to a static inline function (GH-20290)Dong-hee Na2020-05-254-12/+37
* bpo-39245: Fix docs links to the stable ABI (GH-20388)Miro Hrončok2020-05-251-9/+9
* bpo-34397: Remove redundant overflow checks in list and tuple implementation....Sergey Fedoseev2020-05-252-15/+4
* bpo-38972: Fix typos in PowerShell Execution Policies links (GH-20383)Miro Hrončok2020-05-252-2/+2
* bpo-40671: Prepare _hashlib for PEP 489 (GH-20180)Christian Heimes2020-05-252-67/+115
* bpo-40695: Limit hashlib builtin hash fallback (GH-20259)Christian Heimes2020-05-252-2/+6
* bpo-35714: Reject null characters in struct format strings (GH-16928)Zackery Spytz2020-05-253-0/+15
* bpo-38580: Document that select() accepts iterables, not just sequences (GH-1...Jakub Stasiak2020-05-253-8/+8
* bpo-40334: Support suppressing of multiple optional variables in Pegen (GH-20...Batuhan Taskaya2020-05-241-2/+2
* bpo-36290: Fix keytword collision handling in AST node constructors (GH-12382)Rémi Lapeyre2020-05-245-6/+66
* bpo-17050: Remove documentation on argparse.REMAINDER (GH-18661)Albert2020-05-241-13/+0
* bpo-40443: Remove unused imports in the zoneinfo (GH-20354)Dong-hee Na2020-05-242-4/+0
* bpo-37309: Update IDLE NEWS.txt (GH-20356)Terry Jan Reedy2020-05-241-0/+1
* bpo-40723: Make IDLE autocomplete test run without __main__.__file__ (GH-20311)Florian Dahlitz2020-05-243-1/+4
* bpo-37973: Improve the docstrings of sys.float_info (GH-19218)Zackery Spytz2020-05-241-2/+4
* Remove spurious NULL in descrobject.c (GH-20344)Hai Shi2020-05-241-1/+0
* Use Py_ssize_t for the column number in the PEG support code (GH-20341)Pablo Galindo2020-05-241-1/+1
* bpo-40405: Fix asyncio.as_completed docs (GH-19753)Bar Harel2020-05-231-5/+5
* bpo-34556: Document addition of upgrade_deps to venv.create (GH-20135)Shantanu2020-05-231-1/+5