summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* bpo-42809: Improve pickle tests for recursive data. (GH-24060)Miss Islington (bot)2021-01-021-87/+253
* [3.9] bpo-42425: Fix possible leak in initialization of errmap for OSError (G...Serhiy Storchaka2021-01-021-1/+3
* [3.9] bpo-42756: Configure LMTP Unix-domain socket to use global default time...Ross2021-01-024-1/+22
* bpo-39068: Fix race condition in base64 (GH-17627)Miss Islington (bot)2021-01-013-2/+5
* Bring Python into the new year. (GH-24036)Miss Islington (bot)2021-01-019-10/+10
* bpo-42794: Update test_nntplib to use offical group name for testing (GH-24037)Miss Islington (bot)2021-01-012-3/+9
* bpo-42781: Document the mechanics of cached_property from a user viewpoint (G...Miss Islington (bot)2021-01-011-4/+14
* Fixes a typo in importlib.metadata. (GH-23921) (#24029)Miss Islington (bot)2020-12-311-2/+2
* [3.9] bpo-41224: Add versionadded for Symbol.is_annotated (GH-23861). (GH-24017)Andre Delfino2020-12-311-0/+6
* bpo-42655: Fix subprocess extra_groups gid conversion (GH-23762)Miss Islington (bot)2020-12-294-11/+9
* bpo-42700: Swap descriptions in pyexpat.errors (GH-23876)Miss Islington (bot)2020-12-291-2/+2
* Allow / character in username,password fields in _PROXY envvars. (GH-23973)Miss Islington (bot)2020-12-293-2/+15
* [doc] Fix missing commas in signatures (GH-23693)Miss Islington (bot)2020-12-292-3/+3
* bpo-16396: fix BPO number in changelog (GH-23951) (GH-23956)Miss Islington (bot)2020-12-291-1/+1
* bpo-42759: Fix equality comparison of Variable and Font in Tkinter (GH-23968)Miss Islington (bot)2020-12-295-11/+27
* bpo-42749: Use dynamic version to test for unsupported bignum in Tk (GH-23966)Miss Islington (bot)2020-12-291-1/+1
* bpo-42770: Fix a typo in the email.headerregistry docs (GH-23982)Miss Islington (bot)2020-12-291-1/+1
* bpo-42740: Fix get_args for PEP 585 collections.abc.Callable (GH-23963)Miss Islington (bot)2020-12-282-3/+6
* bpo-42755: Fix sqlite3.Connection.backup docs (GH-23965)Miss Islington (bot)2020-12-271-1/+1
* bpo-42749: Fix testing bignum if Tkinter is compiled with Tk 8.4 and dynamic ...Miss Islington (bot)2020-12-271-4/+8
* Add convolve() to the itertools recipes (GH-23928) (GH-23949)Miss Islington (bot)2020-12-261-0/+12
* Rename Tkinter tests for widget options (GH-23944)Miss Islington (bot)2020-12-253-210/+212
* bpo-42727: [Enum] use super() and include **kwds (GH-23927)Miss Islington (bot)2020-12-251-2/+2
* bpo-42734: Fix crasher bogus_code_obj.py (GH-23939)Miss Islington (bot)2020-12-251-1/+1
* bpo-42388: Fix subprocess.check_output input=None when text=True (GH-23467)Miss Islington (bot)2020-12-254-3/+32
* bpo-42727: Fix the NEWS entry .rst (GH-23932)Miss Islington (bot)2020-12-251-2/+2
* [3.9] bpo-42727: [Enum] EnumMeta.__prepare__ now accepts **kwds (GH-23917). (...Ethan Furman2020-12-243-2/+14
* closes bpo-42726: gdb libpython: InstanceProxy support for py3 (GH-23912)Miss Islington (bot)2020-12-242-1/+3
* bpo-42195: Override _CallableGenericAlias's __getitem__ (GH-23915)Miss Islington (bot)2020-12-242-1/+17
* BPO-42703: Fix incorrect documentation links for asyncio.Event (GH-23881)Miss Islington (bot)2020-12-231-5/+5
* bpo-42620: Improve socket.getsockname doc string (GH-23742)Miss Islington (bot)2020-12-231-2/+3
* bpo-34463: Make python tracebacks identical to C tracebacks for SyntaxErrors ...Miss Islington (bot)2020-12-223-5/+35
* bpo-29030: Document interaction between *choices* and *metavar*. (GH-23884) (...Miss Islington (bot)2020-12-221-0/+5
* [3.9] [doc] Fix a few margins due to bad markup (GH-23619). (GH-23859)Andre Delfino2020-12-228-81/+80
* [3.9] [doc] Fix erroneous backslashes in signatures and names (GH-23658) (GH-...Andre Delfino2020-12-2232-90/+90
* Fix typo in docstring (GH-23515)Miss Islington (bot)2020-12-211-1/+1
* bpo-42669: Document that `except` rejects nested tuples (GH-23822) (GH-23870)Miss Islington (bot)2020-12-202-1/+3
* bpo-42572: Improve argparse docs for the type parameter. (GH-23849) (GH-23869)Miss Islington (bot)2020-12-201-50/+57
* bpo-42604: always set EXT_SUFFIX=${SOABI}${SHLIB_SUFFIX} when using configure...Miss Islington (bot)2020-12-203-13/+6
* 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