summaryrefslogtreecommitdiffstats
path: root/Doc
Commit message (Expand)AuthorAgeFilesLines
* bpo-29418: Implement inspect.ismethodwrapper and fix inspect.isroutine for ca...Hakan Çelik2022-02-161-0/+8
* bpo-46730: Add more info to @property AttributeError messages (GH-31311)Alex-Blade2022-02-161-4/+4
* bpo-46737: Add default arguments to random.gauss and normalvariate (GH-31360)Zackery Spytz2022-02-151-2/+8
* Update the OMG link (GH-30383)David Gilbertson2022-02-141-1/+1
* Fix missing import in dataclass code snippet (GH-29214)Leo2022-02-141-1/+1
* doc: use colon for all color's rangs (GH-28998)Rafael Fontenelle2022-02-141-2/+2
* bpo-38619: Update the documentation for UUID.hex (GH-29830)1809092022-02-141-1/+1
* Update __main__.rst (GH-30896)David Gilbertson2022-02-141-1/+1
* Fix a typo in Doc/faq/programming.rst (GH-31243)Cooper Lees2022-02-141-1/+1
* Fix minor grammar error (#31325)Scott Noyes2022-02-141-1/+1
* bpo-46747: Add missing key parameters in the bisect docs (GH-31323)Zackery Spytz2022-02-141-2/+2
* Corrections to format precision description. (GH-31291)John Belmonte2022-02-141-5/+6
* bpo-45447: Fix entry in What's New 3.11 (GH-31307)Terry Jan Reedy2022-02-131-1/+1
* bpo-45447: Add entry to What's new 3.9 (GH-31305)Terry Jan Reedy2022-02-131-0/+3
* bpo-45447: Add entry to What's new 3.10 (GH-31304)Terry Jan Reedy2022-02-131-1/+6
* bpo-45447: Add syntax highlighting for `.pyi` files in IDLE (GH-28950)Alex Waygood2022-02-131-0/+6
* bpo-46586: Fix documentation links (GH-31216)Meer Suri2022-02-121-1/+1
* bpo-46355: Amend What's New in Python 3.11 C API wording (GH-31288)Erlend Egeberg Aasland2022-02-121-2/+2
* bpo-46483: [doc] pathlib classes no longer support parameterized generics (GH...Alex Waygood2022-02-111-4/+0
* bpo-46613: Add PyType_GetModuleByDef to the public API (GH-31081)Petr Viktorin2022-02-113-3/+25
* Fix the signature of multiprocessing.set_executable (GH-31276)Géry Ogam2022-02-111-2/+2
* bpo-42238: [doc] moving from rstlint.py to sphinx-lint. (GH-31097)Julien Palard2022-02-104-3/+21
* bpo-43532: add version added to KW_ONLY (GH-31235)Henry Schreiner2022-02-091-0/+2
* bpo-46475: Add typing.Never and typing.assert_never (GH-30842)Jelle Zijlstra2022-02-081-0/+56
* bpo-46659: calendar uses locale.getlocale() (GH-31166)Victor Stinner2022-02-072-1/+7
* bpo-46534: Implement PEP 673 Self in typing.py (GH-30924)James Hilton-Balfe2022-02-072-0/+49
* bpo-46166: Fix compiler warnings in What's New in Python 3.11 (GH-31198)Victor Stinner2022-02-071-4/+4
* bpo-23952: Document cgi module's maxlen variable (GH-30338)Hugo van Kemenade2022-02-061-0/+5
* [doc] Enhance readability by avoiding big blocks for small numbers. (GH-31157)Julien Palard2022-02-061-9/+3
* bpo-46640: Py_NAN now uses the C99 NAN constant (GH-31134)Victor Stinner2022-02-061-0/+6
* Allows to specify the port on which serve documentation (GH-31145)Christophe Nanteuil2022-02-061-1/+2
* bpo-31369: include ``RegexFlag`` in ``re.__all__`` (GH-30279)andrei kulakov2022-02-051-0/+16
* bpo-46608: exclude marshalled-frozen data if deep-freezing to save 300 KB spa...Kumar Aditya2022-02-042-0/+9
* Optimize images by IMGbot (GH-21348)Manish Kumar ⛄2022-02-045-1/+1
* bpo-46569: [Enum] fix typo in `StrEnum` docs (GH-31007)Nikita Sobolev2022-02-031-1/+1
* bpo-46624: Defer to 3.12: "Remove deprecated support for non-integer values" ...Miro Hrončok2022-02-031-4/+9
* bpo-44977: Deprecate delegation of int to __trunc__ (GH-31031)Zackery Spytz2022-02-033-0/+12
* bpo-46483: Remove `__class_getitem__` from `pathlib.PurePath` (GH-30848)Nikita Sobolev2022-02-031-0/+3
* bpo-45173: Keep configparser deprecations until Python 3.12 (GH-30952)Hugo van Kemenade2022-02-022-10/+32
* bpo-45459: Add Py_buffer to limited API (GH-29991)Christian Heimes2022-02-024-6/+45
* Add recipe for subslices (GH-31028)Raymond Hettinger2022-02-021-0/+9
* Fix minor details in the Counter docs (GH-31029)Raymond Hettinger2022-02-021-3/+10
* bpo-46414: Add typing.reveal_type (#30646)Jelle Zijlstra2022-02-021-0/+31
* bpo-46355: What's New: Note that PyFrameObject are private (GH-31032)Petr Viktorin2022-02-011-9/+20
* bpo-29688: document and test `pathlib.Path.absolute()` (GH-26153)Barney Gale2022-01-281-3/+16
* bpo-46329: Split calls into precall and call instructions. (GH-30855)Mark Shannon2022-01-282-31/+42
* bpo-42238: [doc] Avoid hardcoding fast-moving lines in susp-ignored.csv. (GH-...Julien Palard2022-01-281-2/+2
* bpo-40170: Remove PyHeapType_GET_MEMBERS() macro (GH-30942)Victor Stinner2022-01-271-0/+5
* bpo-42982: update pbkdf2 example & add another link (GH-30966)Gregory P. Smith2022-01-271-5/+7
* bpo-23556: [doc] Fix inaccuracy in documentation for raise without args. Impr...Kinshuk Dua2022-01-272-17/+18