summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* 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
* | bpo-40375: Implement imaplib.IMAP4.unselect (GH-19712)Dong-hee Na2020-04-275-0/+59
* | bpo-40217: Clean code in PyType_FromSpec_Alloc and add NEWS entry (GH-19733)Pablo Galindo2020-04-272-9/+22
|/
* bpo-40217: Ensure Py_VISIT(Py_TYPE(self)) is always called for PyType_FromSpe...Pablo Galindo2020-04-271-1/+83
* Add files in tests/test_peg_generator to the install target lists (GH-19723)Pablo Galindo2020-04-272-0/+8
* bpo-40398: Fix typing.get_args() for special generic aliases. (GH-19720)Serhiy Storchaka2020-04-273-3/+12
* bpo-40348: Fix typos in the programming FAQ (GH-19729)Zackery Spytz2020-04-271-2/+2
* bpo-38387: Formally document PyDoc_STRVAR and PyDoc_STR macros (GH-16607)Brad Solomon2020-04-273-1/+35
* bpo-40401: Remove duplicate pyhash.h include from pythoncore.vcxproj (GH-19725)Ammar Askar2020-04-271-1/+0
* bpo-40387: Improve queue join() example. (GH-19724)Raymond Hettinger2020-04-271-16/+12
* bpo-40396: Support GenericAlias in the typing functions. (GH-19718)Serhiy Storchaka2020-04-263-6/+62
* Fix typo in Lib/typing.py (GH-19717)Nickolena Fisher2020-04-261-1/+1
* Fix typo in object.__format__ docs (GH-19504)Heshy Roskes2020-04-261-1/+1
* bpo-40275: Avoid importing logging in test.support (GH-19601)Serhiy Storchaka2020-04-257-109/+105
* bpo-40275: Avoid importing socket in test.support (GH-19603)Serhiy Storchaka2020-04-2537-429/+472
* bpo-40275: Avoid importing asyncio in test.support (GH-19600)Serhiy Storchaka2020-04-253-2/+19
* bpo-40279: Add some error-handling to the module initialisation docs example ...Cajetan Rodrigues2020-04-251-3/+11
* closes bpo-40385: Remove Tools/scripts/checkpyc.py (GH-19709)Ammar Askar2020-04-253-70/+2
* bpo-40334: Add What's New sections for PEP 617 and PEP 585 (GH-19704)Guido van Rossum2020-04-251-0/+43
* bpo-40340: Separate examples more clearly in the programming FAQ (GH-19688)Cajetan Rodrigues2020-04-241-4/+5
* bpo-40360: Deprecate lib2to3 module in light of PEP 617 (GH-19663)Carl Meyer2020-04-244-5/+20
* bpo-40334: Rewrite test_c_parser to avoid memory leaks (GH-19694)Lysandros Nikolaou2020-04-243-83/+146
* bpo-38061: subprocess uses closefrom() on FreeBSD (GH-19697)Victor Stinner2020-04-243-1/+22
* bpo-38061: os.closerange() uses closefrom() on FreeBSD (GH-19696)Victor Stinner2020-04-242-7/+26
* Expand the implementation comments (GH-19699)Raymond Hettinger2020-04-241-0/+7
* bpo-40048: Fix _PyCode_InitOpcache() error path (GH-19691)Victor Stinner2020-04-241-1/+1
* Use Py_ssize_t instead of ssize_t (GH-19685)Pablo Galindo2020-04-241-1/+1
* bpo-40334: Allow to run make regen-pegen without distutils (GH-19684)Pablo Galindo2020-04-232-11/+12
* Fix broken mkdir -p call in regen-pegen (#19695)Guido van Rossum2020-04-231-1/+1
* bpo-40334: Use old compiler when compile mode is func_type (GH-19692)Guido van Rossum2020-04-231-1/+1
* bpo-40336: Refactor typing._SpecialForm (GH-19620)Serhiy Storchaka2020-04-231-77/+61
* bpo-39983: Add test.support.print_warning() (GH-19683)Victor Stinner2020-04-236-31/+59