aboutsummaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* bpo-42843: Keep Sphinx 1.8 and Sphinx 2 compatibility (GH-24282)Julien Palard2021-01-259-47/+27
* bpo-42955: Fix sys.module_names doc (GH-24329)Victor Stinner2021-01-251-1/+1
* bpo-42955: Add sys.modules_names (GH-24238)Victor Stinner2021-01-251-1/+21
* bpo-27772: Make preceding width with 0 valid in string format. (GH-11270)Serhiy Storchaka2021-01-251-2/+6
* bpo-42996: Update a reference to PKCS #5 in hashlib docs to version 2.1 (GH-2...Illia Volochii2021-01-221-2/+2
* bpo-40304: Correct type(name, bases, dict) doc (GH-19553)Борис Верховский2021-01-221-8/+9
* bpo-42856: Add --with-wheel-pkg-dir=PATH configure option (GH-24210)Victor Stinner2021-01-201-3/+3
* Fix typos in unittest documentation (GH-24194)Conchylicultor2021-01-201-3/+3
* Doc: os.path.abspath and Path.resolve are also different (GH-23276)Hong Xu2021-01-201-5/+12
* bpo-42877: add the 'compact' param to TracebackException's __init__ (#24179)Irit Katriel2021-01-141-1/+9
* bpo-39273: Expose BUTTON5_* constants in the curses module if available (GH-1...Zackery Spytz2021-01-141-1/+5
* bpo-37324: Remove ABC aliases from collections (GH-23754)Hugo van Kemenade2021-01-131-5/+0
* Fix various ParamSpec errors in typing (GH-24176)Ken Jin2021-01-101-2/+2
* Fix a typo in docs for typing.Concatenate (#24169)Johan Dahlin2021-01-081-1/+1
* bpo-42783: Documentation for asyncio.sleep(0) (#24002)Simon Willison2021-01-071-0/+4
* bpo-42811: Update importlib.utils.resolve_name() docs to use __spec__.parent ...Yair Frid2021-01-061-1/+1
* bpo-14014: Clarify StreamWriter.reset() documentation (GH-13716)Berker Peksag2021-01-061-2/+2
* bpo-38413: Remove outdated section about multithreading in sqlite3 (GH-23159)Vladimir2021-01-061-13/+0
* bpo-40810: Require SQLite 3.7.15 (GH-24106)Erlend Egeberg Aasland2021-01-061-1/+1
* bpo-42681: Fix range checks for color and pair numbers in curses (GH-23874)Serhiy Storchaka2021-01-031-6/+8
* bpo-38308: Fix the "versionchanged" for the *weights* of harmonic_mean() (GH-...Zackery Spytz2021-01-031-1/+1
* bpo-41559: Documentation for PEP 612 (GH-24000)Ken Jin2021-01-012-1/+208
* bpo-42781: Document the mechanics of cached_property from a user viewpoint (G...Raymond Hettinger2020-12-311-4/+14
* Fixes a typo in importlib.metadata. (#23921)Tao He2020-12-311-2/+2
* bpo-42382: In importlib.metadata, `EntryPoint` objects now expose `dist` (#23...Jason R. Coombs2020-12-311-8/+3
* bpo-42393: Raise OverflowError iso. DeprecationWarning on overflow in socket....Erlend Egeberg Aasland2020-12-311-10/+6
* Minor improvements to the convolve() recipe (GH-24012)Raymond Hettinger2020-12-301-2/+2
* bpo-41224: Add versionadded for Symbol.is_annotated (GH-23861)Andre Delfino2020-12-291-0/+2
* bpo-42700: Swap descriptions in pyexpat.errors (GH-23876)Michael Wayne Goodman2020-12-291-2/+2
* bpo-42770: Fix a typo in the email.headerregistry docs (GH-23982)Zackery Spytz2020-12-281-1/+1
* bpo-42222: Modernize integer test/conversion in randrange() (#23064)Raymond Hettinger2020-12-281-0/+9
* bpo-42755: Fix sqlite3.Connection.backup docs (GH-23965)Erlend Egeberg Aasland2020-12-271-1/+1
* Add convolve() to the itertools recipes (GH-23928)Raymond Hettinger2020-12-251-0/+12
* bpo-35728: Add root parameter to tkinter.font.nametofont() (GH-23885)Desmond Cheong2020-12-251-2/+5
* bpo-42388: Fix subprocess.check_output input=None when text=True (GH-23467)Gregory P. Smith2020-12-241-2/+3
* bpo-38308: Add optional weighting to statistics.harmonic_mean() (GH-23914)Raymond Hettinger2020-12-231-9/+12
* bpo-41960: Add globalns and localns parameters to inspect.signature and Signa...Batuhan Taskaya2020-12-241-3/+19
* bpo-9694: Fix misleading phrase "optional arguments" (GH-23858)Raymond Hettinger2020-12-231-27/+27
* BPO-42703: Fix incorrect documentation links for asyncio.Event (GH-23881)Matt Fowler2020-12-231-5/+5
* bpo-29030: Document interaction between *choices* and *metavar*. (GH-23884)Raymond Hettinger2020-12-221-0/+5
* [doc] Fix missing commas in signatures (#23693)Andre Delfino2020-12-222-3/+3
* bpo-39159: Declare error that might be raised from literal_eval (GH-19899)Batuhan Taskaya2020-12-211-1/+5
* bpo-42572: Improve argparse docs for the type parameter. (GH-23849)Raymond Hettinger2020-12-201-50/+57
* bpo-41724: Explain when the conversion is not possible with detect_types enab...sblondon2020-12-191-1/+3
* bpo-42559: Not that getrandbits() is non-negative. (GH-23843)Raymond Hettinger2020-12-181-4/+5
* bpo-34805: Guarantee that __subclasses__() is in definition order. (GH-23844)Raymond Hettinger2020-12-181-2/+2
* bpo-24792: Fix zipimporter masking the cause of import errors (GH-22204)Irit Katriel2020-12-181-5/+4
* bpo-36769: Document that fnmatch.filter supports any kind of iterable (#13039)Andre Delfino2020-12-181-1/+1
* bpo-42675: Document collections.abc.Callable changes (GH-23839)kj2020-12-181-0/+4
* bpo-17140: Document multiprocessing's ThreadPool (GH-23812)Matt Wozniski2020-12-181-0/+40