summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
...
* bpo-41724: Explain when the conversion is not possible with detect_types enab...Miss Islington (bot)2020-12-201-1/+3
* [3.9] bpo-42675: Document collections.abc.Callable changes (GH-23839) (#23852)kj2020-12-192-0/+22
* bpo-40219: Lowered ttk LabeledScale dummy (GH-21467) (GH-23788)Miss Islington (bot)2020-12-192-1/+5
* [3.9] bpo-42630: Improve error reporting in Tkinter for absent default root (...Serhiy Storchaka2020-12-1919-87/+316
* bpo-42559: Not that getrandbits() is non-negative. (GH-23843) (GH-23851)Miss Islington (bot)2020-12-191-4/+5
* bpo-34805: Guarantee that __subclasses__() is in definition order. (GH-23844...Miss Islington (bot)2020-12-192-2/+12
* bpo-42670: Fix a missing word in the itertools.product() docs (GH-23823) (GH-...Miss Islington (bot)2020-12-191-1/+1
* bpo-36769: Document that fnmatch.filter supports any kind of iterable (GH-13039)Miss Islington (bot)2020-12-182-2/+2
* bpo-41891: ensure asyncio.wait_for waits for task completion (GH-22461) (#23840)Miss Islington (bot)2020-12-183-1/+66
* bpo-17140: Document multiprocessing's ThreadPool (GH-23812)Miss Islington (bot)2020-12-182-0/+41
* bpo-39096: Format specification documentation fixes for numeric types (GH-23575)Miss Islington (bot)2020-12-181-12/+23
* bpo-42613: Fix freeze.py config directory (GH-23792) (GH-23817)Miss Islington (bot)2020-12-172-10/+12
* bpo-26564: fix obsolete comment in traceback.c (GH-23819)Miss Islington (bot)2020-12-171-1/+2
* bpo-42375: subprocess DragonFlyBSD build update. (GH-23320) (GH-23388)Miss Islington (bot)2020-12-172-4/+5
* bpo-41804: Enhance test_epoll.test_control_and_wait() (GH-23795)Miss Islington (bot)2020-12-171-13/+11
* Fix indentation for get_stats_profile() docs (GH-23618)Miss Islington (bot)2020-12-161-1/+1
* bpo-37961: Fix regression in tracemalloc.Traceback.__repr__ (GH-23805)Miss Islington (bot)2020-12-163-1/+22
* Add symbols of the stable ABI to python3dll.c (GH-23598) (GH-23801)Victor Stinner2020-12-161-0/+6
* bpo-38323: Add guard clauses in MultiLoopChildWatcher. (GH-22756)Miss Islington (bot)2020-12-161-14/+18
* bpo-39101: Fixes BaseException hang in IsolatedAsyncioTestCase. (GH-22654)Miss Islington (bot)2020-12-163-2/+30
* bpo-40686: Fix compiler warnings on _zoneinfo.c (GH-23614) (GH-23804)Miss Islington (bot)2020-12-161-10/+4
* bpo-19733: Re-enable tests for -image option in Tkinter (GH-23785)Miss Islington (bot)2020-12-162-6/+0
* bpo-42644: Validate values in logging.disable() (GH-23786)Miss Islington (bot)2020-12-163-0/+20
* [3.9] bpo-42318: Fix support of non-BMP characters in Tkinter on macOS (GH-23...Serhiy Storchaka2020-12-153-7/+94
* bpo-33610: Edit idlelib.codecontext (GH-23773) (GH-23775)Miss Islington (bot)2020-12-151-5/+8
* [3.9] bpo-42567: [Enum] call __init_subclass__ after members are added (GH-23...Ethan Furman2020-12-153-3/+103
* [3.9] bpo-42517: [Enum] deprecate private name members (GH-23722) (GH-23748)Miss Islington (bot)2020-12-144-0/+51
* bpo-42591: Export missing Py_FrozenMain() symbol (GH-23730) (GH-23734)Victor Stinner2020-12-142-0/+5
* bpo-40084: Enum - dir() includes member attributes (GH-19219)Miss Islington (bot)2020-12-145-2/+20
* bpo-42059: Fix required/optional keys for TypedDict(..., total=False) (GH-227...Miss Islington (bot)2020-12-143-2/+7
* bpo-36541: Add lib2to3 grammar PEP-570 pos-only arg parsing (GH-23759)Miss Islington (bot)2020-12-143-6/+79
* [3.9] bpo-42195: Ensure consistency of Callable's __args__ in collections.abc...kj2020-12-147-43/+202
* [3.9] bpo-42532: Check if NonCallableMock's spec_arg is not None instead of c...Karthikeyan Singaravelan2020-12-143-1/+12
* bpo-42598: Fix implicit function declarations in configure (GH-23690) (GH-23756)Miss Islington (bot)2020-12-133-12/+16
* [3.9] bpo-41879: Doc: Fix description of async for statement (GH-23548) (GH-2...Miss Islington (bot)2020-12-131-4/+4
* [3.9] [doc] Link to issue regarding logging.disable level param default value...Andre Delfino2020-12-101-2/+2
* [3.9] [Enum] reformat and add doc strings (GH-23705). (GH-23707)Ethan Furman2020-12-081-51/+127
* bpo-41907: [Enum] fix format() behavior for IntFlag (GH-22497) (GH-23703)Miss Islington (bot)2020-12-083-1/+16
* [3.9] bpo-41910: move news entry (GH-23697)Terry Jan Reedy2020-12-081-9/+9
* bpo-32381: Fix PyRun_SimpleFileExFlags() encoding (GH-23642) (GH-23692)Victor Stinner2020-12-082-92/+135
* Post 3.9.1Łukasz Langa2020-12-081-1/+1
* Merge tag 'v3.9.1' into 3.9Łukasz Langa2020-12-0818-80/+221
|\
| * Python 3.9.1v3.9.1Łukasz Langa2020-12-0718-80/+221
* | bpo-41889: [Enum] fix multiple-inheritance regression (GH-22487) (GH-23673)Miss Islington (bot)2020-12-073-3/+35
* | bpo-42536: GC track recycled tuples (GH-23623) (GH-23651)Brandt Bucher2020-12-0712-0/+192
* | bpo-39825: Fixes sysconfig.get_config_var('EXT_SUFFIX') on Windows to match d...Miss Islington (bot)2020-12-073-2/+10
|/
* bpo-38843: Document behavior of default when the attribute is already set (GH...Miss Islington (bot)2020-12-071-1/+9
* bpo-42508: Keep IDLE running on macOS (GH-23577) (GH-23669)Miss Islington (bot)2020-12-073-19/+14
* [3.9] bpo-42576: Clarify only debug builds are affected in news (GH-23663) (G...Miss Islington (bot)2020-12-061-1/+2
* bpo-42576: Raise TypeError when passing in keyword arguments to GenericAlias ...Miss Islington (bot)2020-12-053-1/+9