summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* [3.10] gh-93738: Documentation C syntax (:c:type:`PyTypeObject*` -> :c:expr:`...Miss Islington (bot)2022-10-052-2/+2
* [3.10] gh-93738: Documentation C syntax (Use `c:struct`) (GH-97772) (#97893)Łukasz Langa2022-10-055-14/+14
* [3.10] gh-93738: Documentation C syntax (:c:type: to :c:expr:, misc. cases) (...Łukasz Langa2022-10-054-6/+6
* [3.10] gh-93738: Documentation C syntax (:c:type:`PyObject` -> :c:expr:`PyObj...Miss Islington (bot)2022-10-0510-30/+30
* gh-95196: Disable incorrect pickling of the C implemented classmethod descrip...Miss Islington (bot)2022-10-053-1/+20
* gh-97661: Improve accuracy of sqlite3.Cursor.fetchone docs (GH-97662)Miss Islington (bot)2022-10-051-1/+3
* gh-97825: fix AttributeError when calling subprocess.check_output(input=None)...Miss Islington (bot)2022-10-053-1/+9
* Add re.VERBOSE flag documentation example (GH-97678)Miss Islington (bot)2022-10-051-1/+2
* [3.10] gh-93738: Documentation C syntax (:c:type:`PyInterpreterState *` -> :c...Miss Islington (bot)2022-10-051-1/+1
* [3.10] gh-93738: Documentation C syntax (:c:data:`view->obj` -> :c:expr:`view...Miss Islington (bot)2022-10-051-5/+5
* [3.10] gh-93738: Documentation C syntax (:c:type:`TYPE` -> :c:expr:`TYPE`) (G...Miss Islington (bot)2022-10-051-2/+2
* [3.10] gh-93738: Documentation C syntax (:c:type:`FILE` -> :c:expr:`FILE`) (G...Miss Islington (bot)2022-10-053-8/+8
* [3.10] gh-93738: Documentation C syntax (:c:type:`PyTupleObject*` -> :c:expr:...Miss Islington (bot)2022-10-041-1/+1
* [3.10] gh-93738: Documentation C syntax (:c:type:`PyBytesObject*` -> :c:expr:...Miss Islington (bot)2022-10-041-1/+1
* [3.10] gh-93738: Documentation C syntax (:c:type:`PyUnicodeObject*` -> :c:exp...Miss Islington (bot)2022-10-041-1/+1
* [3.10] gh-93738: Documentation C syntax (:c:type:`Py_UNICODE*` -> :c:expr:`Py...Miss Islington (bot)2022-10-041-1/+1
* [3.10] gh-88355: Fix backslashes in AF_PIPE (GH-96543) (#97855)Miss Islington (bot)2022-10-041-2/+2
* [3.10] gh-96448: fix documentation for _thread.lock.acquire (GH-96449) (#97852)Miss Islington (bot)2022-10-041-5/+5
* [3.10] gh-97731: fix distclean target to clean docs GH-97732 (#97846)Senthil Kumaran2022-10-041-3/+2
* [3.10] gh-97709: Included newline separator in Mandelbrot set (GH-97737) (#97...Miss Islington (bot)2022-10-042-3/+3
* GH-82604: fix docs about configuring selector (GH-97755)Miss Islington (bot)2022-10-041-3/+6
* gh-97754: Update doc for default location of per-user installs on Windows (GH...Miss Islington (bot)2022-10-041-3/+6
* gh-97639: Remove `tokenize.NL` check from `tabnanny` (GH-97640)Miss Islington (bot)2022-10-042-2/+1
* gh-93738: Documentation C syntax (:c:data:`0` -> ``0``) (GH-97771)Miss Islington (bot)2022-10-041-1/+1
* Update http.client.rst (GH-24803)Miss Islington (bot)2022-10-031-9/+8
* Minor grammar changes to http.client docs (GH-96221)Miss Islington (bot)2022-10-031-2/+2
* Document that MozillaCookieJar works for curl's cookie files (GH-91852)Miss Islington (bot)2022-10-032-3/+3
* multiprocessing docs: Remove extra option ELLIPSIS from section with code (GH...Miss Islington (bot)2022-10-031-1/+0
* gh-94732: Fix KeyboardInterrupt race in asyncio run_forever() (GH-97765)Miss Islington (bot)2022-10-031-3/+4
* [3.10] gh-97728: Argument Clinic: Fix uninitialized variable in the Py_UNICOD...Serhiy Storchaka2022-10-038-40/+44
* Fix typo in unittest docs (GH-97742)Miss Islington (bot)2022-10-031-1/+1
* [3.10] gh-96845: Fix docs around importlib.abc.Traversable (GH-97515)Jason R. Coombs2022-10-031-2/+6
* gh-97740: Fix bang in Sphinx C domain ref target syntax (GH-97741)Miss Islington (bot)2022-10-032-0/+17
* gh-96819: multiprocessing.resource_tracker: check if length of pipe write <= ...Miss Islington (bot)2022-10-033-2/+11
* GH-85447: Clarify docs about awaiting future multiple times (GH-97738)Miss Islington (bot)2022-10-021-1/+2
* gh-97607: Fix content parsing in the impl-detail reST directive (GH-97652)Miss Islington (bot)2022-10-021-16/+7
* gh-97591: In `Exception.__setstate__()` acquire strong references before call...Miss Islington (bot)2022-10-023-1/+34
* gh-95588: Drop the safety claim from `ast.literal_eval` docs. (GH-95919)Miss Islington (bot)2022-10-023-9/+25
* Fix capitalization of Unix in documentation (GH-96913)Miss Islington (bot)2022-10-016-9/+9
* GH-97592: Fix crash in C remove_done_callback due to evil code (GH-97660)Miss Islington (bot)2022-09-303-2/+23
* GH-96827: Don't touch closed loops from executor threads (GH-96837)Miss Islington (bot)2022-09-303-2/+7
* gh-87597: Document TimeoutExpired.stdout & .stderr types (GH-97685)Miss Islington (bot)2022-09-301-2/+7
* bpo-35675: IDLE - separate config_key window and frame (GH-11427)Miss Islington (bot)2022-09-304-82/+174
* gh-90989: Clarify some installer text (GH-97676)Steve Dower2022-09-302-5/+6
* [3.10] Use SyntaxError invalid range in tutorial introduction example (GH-930...Miss Islington (bot)2022-09-302-2/+3
* gh-96397: Document that attributes need not be identifiers (GH-96454)Miss Islington (bot)2022-09-292-2/+17
* closes gh-97650: correct sphinx executable (gh-97651)Miss Islington (bot)2022-09-291-1/+1
* gh-91212: Fixed flickering when the tracer is turned off (GH-95129)Miss Islington (bot)2022-09-293-2/+2
* gh-97612: Fix shell injection in get-remote-certificate.py (GH-97613)Miss Islington (bot)2022-09-282-18/+10
* gh-97616: list_resize() checks for integer overflow (GH-97617)Miss Islington (bot)2022-09-283-2/+24