summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
...
* bpo-40443: Remove unused imports in idlelib (GH-19801)Victor Stinner2020-04-306-6/+3
* bpo-40389: Improve repr of typing.Optional (#19714)Vlad Serebrennikov2020-04-304-2/+10
* bpo-40443: Remove unused imports in tests (GH-19804)Victor Stinner2020-04-3018-20/+2
* bpo-40443: Remove unused imports in tests (GH-19805)Victor Stinner2020-04-2917-20/+4
* bpo-40334: Fix test_peg_parser to actually use the old parser (GH-19778)Lysandros Nikolaou2020-04-292-8/+15
* bpo-40291: Add support for CAN_J1939 sockets (GH-19538)karl ding2020-04-298-5/+197
* Fix plural typo in documentation (GH-19799)Alex Povel2020-04-291-1/+1
* bpo-1635741: Port _stat module to multiphase initialization (GH-19798)Dong-hee Na2020-04-292-100/+128
* bpo-40328: Add tool for generating cjk mapping headers (GH-19602)Dong-hee Na2020-04-2915-3/+51015
* bpo-40286: Remove C implementation of Random.randbytes() (GH-19797)Victor Stinner2020-04-294-87/+10
* bpo-9216: Expose OpenSSL FIPS_mode() as _hashlib.get_fips_mode() (GH-19703)Victor Stinner2020-04-294-1/+110
* What's New in Python 3.9: Reorganize C API Changes (GH-19794)Victor Stinner2020-04-291-159/+173
* bpo-40228: More robust frame.setlineno. (GH-19437)Mark Shannon2020-04-293-330/+269
* bpo-40436: Fix code parsing gdb version (GH-19792)Victor Stinner2020-04-293-2/+12
* bpo-40428: Cleanup free list part of C API Changes doc (GH-19793)Victor Stinner2020-04-291-11/+9
* Add missing sys import to socket_helper.py (GH-19791)Pablo Galindo2020-04-291-0/+1
* bpo-40334: refactor and cleanup for the PEG generators (GH-19775)Pablo Galindo2020-04-297-230/+292
* bpo-40432 Fix MSBuild project for Pegen grammars (#GH-9785)Anthony Shaw2020-04-291-1/+2
* bpo-40275: Move transient_internet from test.support to socket_helper (GH-19711)Serhiy Storchaka2020-04-2915-144/+153
* bpo-40428: Remove references to Py*_ClearFreeList in the docs (GH-19783)Zackery Spytz2020-04-297-42/+0
* bpo-40334: Disallow invalid single statements in the new parser (GH-19774)Lysandros Nikolaou2020-04-292-1/+51
* bpo-39995: Fix concurrent.futures _ThreadWakeup (GH-19760)Victor Stinner2020-04-292-14/+29
* bpo-40421: Add PyFrame_GetBack() function (GH-19765)Victor Stinner2020-04-299-19/+65
* bpo-40275: Move requires_hashdigest() to test.support.hashlib_helper (GH-19716)Hai Shi2020-04-299-68/+71
* bpo-40334: Explicitly cast to int in pegen.c to fix a compiler warning (GH-19...Pablo Galindo2020-04-291-4/+4
* bpo-40429: PyThreadState_GetFrame() returns a strong ref (GH-19781)Victor Stinner2020-04-297-20/+26
* bpo-40334: Fix shifting of nested f-strings in the new parser (GH-19771)Lysandros Nikolaou2020-04-292-2/+10
* bpo-40428: Remove PyTuple_ClearFreeList() function (GH-19769)Victor Stinner2020-04-2921-86/+71
* bpo-40429: Refactor super_init() (GH-19776)Victor Stinner2020-04-291-64/+85
* bpo-38880: List interpreters associated with a channel end (GH-17323)Lewis Gaul2020-04-294-6/+282
* bpo-40431: Fix syntax typo in turtledemo (GH-19777)Miro Hrončok2020-04-292-1/+2
* bpo-40429: PyFrame_GetCode() now returns a strong reference (GH-19773)Victor Stinner2020-04-289-26/+35
* bpo-32604: Add support for a "default" arg in channel_recv(). (GH-19770)Eric Snow2020-04-282-11/+46
* bpo-40429: PyFrame_GetCode() result cannot be NULL (GH-19772)Victor Stinner2020-04-287-48/+45
* bpo-39966: Revert "bpo-25597: Ensure wraps' return value is used for magic me...Karthikeyan Singaravelan2020-04-283-12/+12
* bpo-40025: Require _generate_next_value_ to be defined before members (GH-19098)Ethan Onstott2020-04-285-0/+21
* bpo-40421: Add PyFrame_GetCode() function (GH-19757)Victor Stinner2020-04-2812-25/+58
* bpo-40421: Add Include/cpython/code.h header file (GH-19756)Victor Stinner2020-04-287-165/+175
* bpo-40421: Add pyframe.h header file (GH-19755)Victor Stinner2020-04-2819-42/+63
* Post 3.9.0a6Łukasz Langa2020-04-281-1/+1
* Merge tag 'v3.9.0a6'Łukasz Langa2020-04-28122-291/+1313
|\
| * Python 3.9.0a6v3.9.0a6Łukasz Langa2020-04-27122-291/+1313
* | bpo-40334: Refactor peg_generator to receive a Tokens file when building c co...Pablo Galindo2020-04-288-90/+219
* | bpo-40334: Don't skip test_parser:test_trigget_memory_error (GH-19744)Lysandros Nikolaou2020-04-281-1/+0
* | bpo-40334: Catch E_EOF error, when the tokenizer returns ERRORTOKEN (GH-19743)Lysandros Nikolaou2020-04-282-5/+6
* | bpo-39995: Split test_concurrent_futures.test_crash() into sub-tests (GH-19739)Victor Stinner2020-04-271-63/+85
* | bpo-30966: concurrent.futures.Process.shutdown() closes queue (GH-19738)Victor Stinner2020-04-272-0/+4
* | bpo-40334: Support PyPARSE_DONT_IMPLY_DEDENT in the new parser (GH-19736)Pablo Galindo2020-04-272-2/+1
* | bpo-40334: Support CO_FUTURE_BARRY_AS_BDFL in the new parser (GH-19721)Pablo Galindo2020-04-2712-327/+437
* | bpo-30966: Add multiprocessing.SimpleQueue.close() (GH-19735)Victor Stinner2020-04-275-0/+38