summaryrefslogtreecommitdiffstats
path: root/Doc/library
Commit message (Expand)AuthorAgeFilesLines
* bpo-44030: Fix formatting error in exceptions docs (GH-25929) (GH-26086)Miss Islington (bot)2021-05-131-1/+1
* bpo-10548: expectedFailure does not apply to fixtures (GH-23201) (#26044)Miss Islington (bot)2021-05-111-2/+3
* bpo-23750: Document os-system, subprocess. Patch by Martin Panter. (GH-26016)...Miss Islington (bot)2021-05-112-5/+11
* bpo-25821: Fix inaccuracy in threading.enumerate/is_alive documentation (GH-2...Miss Islington (bot)2021-05-111-4/+5
* Doc: http.server: directory is not a class attribute, but an argument. (GH-26...Miss Islington (bot)2021-05-111-8/+8
* bpo-43558: Add note about base class initialization to dataclasses doc (GH-25...Miss Islington (bot)2021-05-101-0/+21
* Fix a word in dataclasses docs. (GH-26003) (GH-26004)Miss Islington (bot)2021-05-091-1/+1
* Simple Enhancement. Add missing return statements in ftplib documentation. (G...Miss Islington (bot)2021-05-071-0/+2
* Fix minor grammar problems in dataclasses documentation (GH-25948) (GH-25958)Miss Islington (bot)2021-05-061-7/+7
* docs: clearly document that ":GH-X" string formatting results in "0X..." (GH-...Miss Islington (bot)2021-05-061-2/+4
* Clarify rx parameter of compileall functions (GH-25857)Miss Islington (bot)2021-05-041-4/+6
* fix enum.property reference in docs (GH-25875) (#25876)Miss Islington (bot)2021-05-041-1/+1
* bpo-44001: improve Literal documentation (GH-25877) (#25882)Miss Islington (bot)2021-05-041-2/+2
* Doc: Fix random.uniform example comment. (GH-25784)Julien Palard2021-05-031-1/+1
* dataclasses docs: add a missing word. (GH-25839)Eric V. Smith2021-05-031-1/+1
* More clarification of kw_only args. (GH-25838)Eric V. Smith2021-05-031-13/+20
* Fix invalid markup (#25833)Raymond Hettinger2021-05-031-2/+1
* bpo-25478: Add total() method to collections.Counter (GH-25829)Raymond Hettinger2021-05-031-1/+11
* More work on documenting dataclass keyword-only fields. (GH-25828)Eric V. Smith2021-05-031-16/+40
* bpo-43926: Cleaner metadata with PEP 566 JSON support. (GH-25565)Jason R. Coombs2021-05-021-0/+13
* bpo-43754: Eliminate bindings for partial pattern matches (GH-25229)Brandt Bucher2021-05-021-0/+9
* bpo-43997: Add versionadded directives for to match_args, kw_only, and slots ...Shreyan Avigyan2021-05-021-0/+8
* bpo-38820: Add ssl, hashlib, and hmac changes to whatsnew 3.10 (GH-25817)Christian Heimes2021-05-021-0/+8
* bpo-36384: Leading zeros in IPv4 addresses are no longer tolerated (GH-25099)Christian Heimes2021-05-021-2/+17
* bpo-43733: netrc try to use UTF-8 before using locale encoding. (GH-25781)Inada Naoki2021-05-021-0/+4
* bpo-43987: Add "Annotations Best Practices" HOWTO doc. (#25746)larryhastings2021-05-021-0/+7
* Minor tweaks to dataclasses keyword-only fields documentation. (GH-25801)Eric V. Smith2021-05-021-5/+5
* Improve the dataclasses kw_only documentation. (GH-25799)Eric V. Smith2021-05-011-13/+28
* Fix exceptions mentioned in os.setxattr() docs (GH-25742)Shreyash Sharma2021-05-011-2/+2
* bpo-43998: Default to TLS 1.2 and increase cipher suite security (GH-25778)Christian Heimes2021-05-011-0/+8
* Fixing doc for callback for lambda (GG-25779)Shreyash Sharma2021-05-011-1/+1
* bpo-42269: Add slots parameter to dataclass decorator (GH-24171)Yurii Karabas2021-05-011-5/+10
* bpo-43971: Add spaces around annotated arg default '=' (GH-25702)Mohamed Moselhy2021-04-301-1/+1
* bpo-43954: Fix a missing word in the unittest docs (GH-25672)Zackery Spytz2021-04-301-2/+3
* bpo-43817: Add inspect.get_annotations(). (#25522)larryhastings2021-04-301-12/+64
* bpo-42800: add audit hooks for f_code and tb_frame (GH-24182)Ryan Hileman2021-04-292-1/+4
* bpo-42589: Change URL for 'from' link when used in a raised exception (GH-23872)sblondon2021-04-291-2/+2
* bpo-43882 - urllib.parse should sanitize urls containing ASCII newline and ta...Senthil Kumaran2021-04-291-0/+13
* bpo-43892: Make match patterns explicit in the AST (GH-25585)Nick Coghlan2021-04-291-36/+282
* [doc] Be more clear on super() regarding multiple base classes methods (GH-21...Andre Delfino2021-04-291-1/+1
* Document importlib.metadata.PackagePath.locate method (GH-25669)Paul Moore2021-04-281-1/+7
* bpo-43757: Make pathlib use os.path.realpath() to resolve symlinks in a path ...Barney Gale2021-04-281-3/+15
* bpo-37751: Update `codecs.register()` doc. (GH-25643)Inada Naoki2021-04-281-3/+7
* bpo-43957: [Enum] Deprecate ``TypeError`` from containment checks. (GH-25670)Ethan Furman2021-04-271-0/+6
* bpo-43766: Fix TypeGuard docs (#25660)Ken Jin2021-04-271-8/+3
* bpo-43766: Implement PEP 647 (User-Defined Type Guards) in typing.py (#25282)Ken Jin2021-04-271-0/+74
* bpo-43312: Functions returning default and preferred sysconfig schemes (GH-24...Tzu-ping Chung2021-04-271-0/+37
* [doc] Remove duplicated operator.itemgetter example (GH-24178)Andre Delfino2021-04-271-5/+2
* bpo-43762: Add audit events for loading of sqlite3 extensions (GH-25246)Erlend Egeberg Aasland2021-04-261-0/+14
* Use the zero argument form of super() in examples for Python3 docs. (GH-22314)Andre Delfino2021-04-265-6/+6