summaryrefslogtreecommitdiffstats
path: root/Doc
Commit message (Expand)AuthorAgeFilesLines
* Doc: Fix missing negation. (GH-14640)Miss Islington (bot)2019-09-111-2/+2
* bpo-36260: Add pitfalls to zipfile module documentation (GH-13378) (GH-15976)Miss Islington (bot)2019-09-111-0/+40
* bpo-36182: Update pathlib.Path.write_text() docs (GH-12161) (GH-15977)Miss Islington (bot)2019-09-111-0/+3
* bpo-35224: Additional documentation for Assignment Expressions (GH-15935) (GH...Miss Islington (bot)2019-09-114-60/+9
* bpo-37651: Document CancelledError is now a subclass of BaseException (GH-15950)Miss Islington (bot)2019-09-111-19/+2
* Doc: Indicate locations of parse_qs, parse_qsl, escape (GH-14828)Miss Islington (bot)2019-09-111-1/+2
* Update ftplib.all_errors documentation to match code (GH-15026)Miss Islington (bot)2019-09-111-1/+1
* bpo-33187: Document ElementInclude (XInclude) support in ElementTree (GH-8861...Miss Islington (bot)2019-09-112-0/+92
* bpo-23460: Fix documentation for decimal string :g formatting (GH-11850) (GH-...Miss Islington (bot)2019-09-111-3/+4
* bpo-31163: Added return values to pathlib.Path instance's rename and replace ...Miss Islington (bot)2019-09-111-5/+14
* bpo-33459: Fix "tuple displays" term in Expressions.rst (GH-6760) (GH-15940)Miss Islington (bot)2019-09-111-4/+4
* bpo-33944: note about the intended use of code in .pth files (GH-10131) (GH-1...Miss Islington (bot)2019-09-111-0/+13
* [3.8] Doc: Use walrus operator in example. (GH-15934) (GH-15936)Stéphane Wirtel2019-09-111-4/+1
* bpo-35649: update http client example (GH-11441) (GH-15930)Miss Islington (bot)2019-09-111-2/+5
* [3.8] bpo-35168: Make shlex.punctuation_chars read-only (GH-11631) (GH-15927)Vinay Sajip2019-09-111-3/+5
* Minor ReST formatting fixes in subprocess docs (GH-14876)Miss Islington (bot)2019-09-111-4/+4
* bpo-38103: fix conflicting labels in the docs. (GH-15906)Miss Islington (bot)2019-09-112-5/+5
* bpo-35603: Add a note on difflib table header interpreted as HTML (GH-11439)Miss Islington (bot)2019-09-111-0/+4
* bpo-32972: Document IsolatedAsyncioTestCase of unittest module (GH-15878) (GH...Miss Islington (bot)2019-09-112-0/+102
* bpo-25810: Clarify eval() docs, it does not keywords (GH-15173)Miss Islington (bot)2019-09-111-1/+1
* bpo-37585: Add clarification regarding comparing dict.values() (GH-14954)Miss Islington (bot)2019-09-111-0/+8
* bpo-16438: Doc: confusing text regarding numeric precedence corrected (GH-10521)Miss Islington (bot)2019-09-111-3/+2
* bpo-38034: Fix typo in logging.handlers.rst (GH-15708) (GH-15893)Miss Islington (bot)2019-09-111-1/+1
* bpo-37574: Mention helper functions for find_spec documentation (GH-14739)Miss Islington (bot)2019-09-101-1/+4
* Docs: Small tweaks to c-api/introGH-Include_Files (GH-14698)Miss Islington (bot)2019-09-101-7/+9
* Correct minor grammatical mistake in open docs (GH-15865)Miss Islington (bot)2019-09-101-2/+2
* Correct info about "f.read(size)". (GH13852)Miss Islington (bot)2019-09-101-2/+2
* bpo-33602: Doc: Remove set and queue references from Data Types (GH-7055) (GH...Miss Islington (bot)2019-09-101-3/+4
* Note regarding + mode truncation applies to both text and binary mode (GH-113...Miss Islington (bot)2019-09-101-3/+3
* [3.8] bpo-38086: Sync importlib.metadata with importlib_metadata 0.21. (GH-15...Jason R. Coombs2019-09-102-15/+17
* bpo-37504: Fix documentation build with texinfo builder (GH-14606)Miss Islington (bot)2019-09-102-1/+19
* bpo-37913: document that __length_hint__ can return NotImplemented (GH-15383)Steve Dower2019-09-101-1/+3
* bpo-21018: added missing documentation about escaping characters for configpa...Miss Islington (bot)2019-09-101-0/+5
* docs: Add references to AsyncMock in unittest.mock.patch (GH-13681)Miss Islington (bot)2019-09-101-4/+16
* bpo-36373: Deprecate explicit loop parameter in all public asyncio APIs [queu...Miss Islington (bot)2019-09-101-0/+4
* bpo-36373: Deprecate explicit loop parameter in all public asyncio APIs [lock...Miss Islington (bot)2019-09-101-0/+18
* bpo-37052: Add examples for mocking async iterators and context managers (GH-...Miss Islington (bot)2019-09-101-0/+39
* bpo-37662: Documented venv.EnvBuilder.upgrade_dependencies(). (GH-15768)Miss Islington (bot)2019-09-101-0/+8
* bpo-37383: Updates docs to reflect AsyncMock call_count after await. (GH-15761)Miss Islington (bot)2019-09-101-0/+14
* [3.8] bpo-34293: Fix PDF documentation paper size (GH-8585) (GH-15816)Zachary Ware2019-09-091-1/+5
* bpo-36502: Update link to UAX GH-44, the Unicode doc on the UCD. (GH-15301)Miss Islington (bot)2019-09-091-1/+1
* bpo-35803: Document and test dir=PathLike for tempfile (GH-11644)Miss Islington (bot)2019-09-091-0/+6
* Clarify that shutil's copy functions can accept path-like values (GH-15141)Miss Islington (bot)2019-09-091-3/+5
* bpo-36797: Fix a dead link in Doc/distutils/apiref (GH-15700) (GH-15704)Miss Islington (bot)2019-09-091-2/+2
* Fix typo in math.prod example (GH-15614)Miss Islington (bot)2019-09-091-1/+1
* [3.8] Doc: Fix PDF build (NoUri). (GH-15739) (GH-15754)Miss Islington (bot)2019-09-091-4/+11
* bpo-34410: Fix a crash in the tee iterator when re-enter it. (GH-15625)Miss Islington (bot)2019-09-091-0/+4
* [3.8] bpo-36018: Address more reviewer feedback (GH-15733) (GH-15734)Raymond Hettinger2019-09-091-14/+27
* [3.8] Correct Roman-numeral example in Unicode HOWTO. (GH-15541). (GH-15728)Serhiy Storchaka2019-09-081-6/+6
* bpo-20806: Reference both times(2) and times(3) and link to MSDN. (GH-15479)Miss Islington (bot)2019-09-071-1/+3