summaryrefslogtreecommitdiffstats
path: root/Doc/library
Commit message (Expand)AuthorAgeFilesLines
* bpo-43693: Add the MAKE_CELL opcode and interleave fast locals offsets. (gh-2...Eric Snow2021-06-071-0/+8
* bpo-43693: Un-revert commits 2c1e258 and b2bf2bc. (gh-26577)Eric Snow2021-06-071-7/+23
* bpo-44258: support PEP 515 for Fraction's initialization from string (GH-26422)Sergey B Kirpichev2021-06-071-1/+6
* bpo-44322: Document more SyntaxError details. (GH-26562)Terry Jan Reedy2021-06-071-2/+9
* bpo-44279: revert 'exceptions are raised' back to 'exceptions occur' (GH-26492)Irit Katriel2021-06-041-1/+1
* bpo-43693: Revert commits 2c1e2583fdc4db6b43d163239ea42b0e8394171f and b2bf2b...Pablo Galindo2021-06-041-23/+7
* bpo-43693: Compute deref offsets in compiler (gh-25152)Mark Shannon2021-06-041-6/+23
* bpo-42862: Use functools.lru_cache iso. _sqlite.Cache in sqlite3 module (GH-2...Erlend Egeberg Aasland2021-06-031-1/+1
* bpo-43693: Add new internal code objects fields: co_fastlocalnames and co_fas...Eric Snow2021-06-031-3/+2
* bpo-43858: Add logging.getLevelNamesMapping() (GH-26459)andrei kulakov2021-06-031-0/+8
* Typo fix in asyncio-eventloop.rst (GH-26482)Zac Bentley2021-06-021-1/+1
* bpo-44279: [doc] reword contextlib.suppress documentation (GH-26428)MapleCCC2021-06-011-2/+3
* Fixing typos in turtle.rst (GH-24385)Jules Lasne2021-05-301-5/+5
* bpo-44235: Remove deprecated functions in the gettext module. (GH-26378)Dong-hee Na2021-05-301-90/+7
* bpo-43750: Fix incorrect reference to PACKET_MULTIHOST in the docs (GH-25241)Zackery Spytz2021-05-291-1/+1
* bpo-44045: fix spelling of uppercase vs upper-case (GH-25985)Jürgen Gmach2021-05-283-3/+3
* bpo-43988: Document test.support.check_disallow_instantiation() (GH-26394)Erlend Egeberg Aasland2021-05-271-0/+8
* bpo-42392: [docs] Add deprecated-removed loop labels for asyncio (GH-26357)Ken Jin2021-05-265-0/+150
* bpo-41147: [doc] contextlib.redirect_stdout() provides the new stream as cont...Peter Law2021-05-261-3/+4
* bpo-20408: Fix memoryview() signature in docs (GH-24431)Mariusz Felisiak2021-05-252-9/+8
* bpo-44151: Various grammar, word order, and markup fixes (GH-26344)Raymond Hettinger2021-05-251-10/+10
* bpo-44151: linear_regression() minor API improvements (GH-26199)Zack Kneupper2021-05-251-10/+11
* bpo-44195: Use 'TraversableResources' in the docs to match the implementation...Jason R. Coombs2021-05-241-2/+2
* bpo-43207: InspectLoader.is_package is not an abstract method (GH-24517)Junnosuke Kuroda2021-05-231-1/+1
* bpo-33809: add the TracebackException.print() method (GH-24231)Irit Katriel2021-05-221-0/+7
* Remove effbot urls (GH-26308)E-Paine2021-05-223-16/+0
* Specify Python Cookbook edition for reference (GH-26301)Terry Jan Reedy2021-05-211-2/+2
* Remove duplicate words in docs. (GH-26167)Mariusz Felisiak2021-05-214-7/+7
* [doc] Fix indentation in inspect documentation (GH-24846)Numerlor2021-05-211-4/+4
* bpo-44150: Support optional weights parameter for fmean() (GH-26175)Raymond Hettinger2021-05-211-2/+19
* [doc] Fix typo in asyncio-eventloop documentation (GH-22311)Bruno2021-05-191-2/+2
* bpo-40975: [doc] Identify AsyncExitStack.enter_async_context()/aclose() as co...naglis2021-05-191-2/+2
* bpo-26110: Document `CALL_METHOD_KW` (GH-26159)Ken Jin2021-05-191-0/+12
* bpo-4928: Document NamedTemporaryFile non-deletion after SIGKILL (#26198)Catherine Devlin2021-05-191-0/+3
* bpo-44010: IDLE: colorize pattern-matching soft keywords (GH-25851)Tal Einat2021-05-191-0/+6
* bpo-30593: Doc'ed that executescript() disregards isolation level (GH-26220)Erlend Egeberg Aasland2021-05-191-1/+5
* bpo-41963: document that ConfigParser strips off comments (GH-26197)Jürgen Gmach2021-05-181-0/+7
* Apply edits from Allen Downey's review of the linear_regression docs. (GH-26176)Raymond Hettinger2021-05-171-17/+9
* [doc] Fix typo in os module (GH-24464)Rafael Fontenelle2021-05-161-1/+1
* bpo-32133: Improve numbers docs (GH-26124)Miguel Brito2021-05-151-1/+1
* bpo-44072: fix Complex, Integral docs for `**` (GH-25986)Rory Yorke2021-05-141-4/+5
* bpo-44095: Add suffix, stem and suffixes to zipfile.Path (GH-26129)Miguel Brito2021-05-141-0/+21
* Subprocess Protocols Documentation (GH-20950)kudavid2021-05-141-1/+1
* [doc] Fix typos in cgi.rst (#24766)Géry Ogam2021-05-141-4/+4
* Updated code example for asyncio.gather (GH-20604)josephernest2021-05-141-8/+11
* bpo-38250: add version added for FlagBoundary (GH-25820)Shantanu2021-05-141-0/+5
* bpo-44030: Fix formatting error in exceptions docs (GH-25929)Miguel Brito2021-05-131-1/+1
* bpo-10548: expectedFailure does not apply to fixtures (#23201)Irit Katriel2021-05-111-2/+3
* bpo-23750: Document os-system, subprocess. Patch by Martin Panter. (GH-26016)uniocto2021-05-112-5/+11
* bpo-25821: Fix inaccuracy in threading.enumerate/is_alive documentation (#23192)Irit Katriel2021-05-111-4/+5