summaryrefslogtreecommitdiffstats
path: root/Doc
Commit message (Expand)AuthorAgeFilesLines
* [doc] Improve punctuation atexit docGéry Ogam2021-06-221-7/+8
* bpo-41621: Document defaultdict's default_factory parameter (GH-21945)Dennis Sweeney2021-06-221-2/+2
* bpo-13814: Explain why generators are not context managers (GH-26835)Terry Jan Reedy2021-06-211-0/+9
* bpo-44466: Faulthandler now detects the GC (GH-26823)Victor Stinner2021-06-212-0/+11
* bpo-44077: Expose IP_RECVTOS in the socket module (GH-25992)Georg Sauthoff2021-06-202-0/+6
* Fix typos and grammatical changes in the 3.10 what's new document (GH-26319)Hemangii2021-06-201-1/+1
* bpo-44426: Fix use of the C keyword 'default' as a variable name (GH-26798)Mark Dickinson2021-06-191-2/+2
* Remove dubious suggestion (GH-26789)Raymond Hettinger2021-06-191-18/+0
* Add a note about NameError/AttributeError suggestions with custom error funct...Pablo Galindo2021-06-181-0/+11
* bpo-43945: [Enum] reduce scope of new format() behavior (GH-26752)Ethan Furman2021-06-181-4/+29
* bpo-44310: Add a FAQ entry for caching method calls (GH-26731)Raymond Hettinger2021-06-171-0/+97
* bpo-44426: Use of 'complex' as a C variable name confuses Sphinx; change it t...Mark Dickinson2021-06-161-2/+2
* bpo-44392: Add Py_GenericAlias to C API docs (GH-26724)Ken Jin2021-06-163-1/+49
* bpo-43795: Don't list private names in the limited API (GH-26740)Petr Viktorin2021-06-161-2/+1
* bpo-44342: [Enum] sync current docs to 3.10 (GH-26750)Ethan Furman2021-06-161-1/+1
* bpo-43475: Add what's new entry for NaN hash changes (GH-26725)Mark Dickinson2021-06-151-0/+7
* bpo-38291: Remove mention of typing.io and typing.re again (GH-26113)Sebastian Rittau2021-06-141-2/+10
* bpo-44310: Note that lru_cache keep references to both arguments and results...Raymond Hettinger2021-06-141-6/+9
* bpo-43475: Fix the Python implementation of hash of Decimal NaN (GH-26679)Serhiy Storchaka2021-06-121-1/+1
* bpo-44339: Fix math.pow corner case to comply with IEEE 754 (GH-26606)Mark Dickinson2021-06-122-3/+14
* bpo-44362: ssl: improve deprecation warnings and docs (GH-26646)Christian Heimes2021-06-112-18/+41
* Doc: Prettier exception hierarchy. (GH-26533)Julien Palard2021-06-111-0/+1
* bpo-44357:Add `math.cbrt()` function: Cube Root (GH-26622)Ajith Ramachandran2021-06-102-0/+14
* bpo-35800: Remove smtpd.MailmanProxy since 3.11 (GH-26617)Dong-hee Na2021-06-092-18/+7
* bpo-21760: fix __file__ description (GH-19097)Furkan Onder2021-06-091-3/+8
* bpo-44242: [Enum] remove missing bits test from Flag creation (GH-26586)Ethan Furman2021-06-091-4/+82
* bpo-43833: Emit warnings for numeric literals followed by keyword (GH-25466)Serhiy Storchaka2021-06-081-0/+23
* bpo-43693: Un-revert commit f3fa63e. (#26609)Eric Snow2021-06-081-0/+8
* bpo-43795: Note Stable ABI PEP in What's New (GH-26479)Petr Viktorin2021-06-081-0/+10
* Revert "bpo-43693: Add the MAKE_CELL opcode and interleave fast locals offset...Pablo Galindo2021-06-081-8/+0
* bpo-44348: Revert "bpo-39573: Py_TYPE becomes a static inline function (GH-26...Pablo Galindo2021-06-082-38/+3
* 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-072-1/+11
* bpo-44322: Document more SyntaxError details. (GH-26562)Terry Jan Reedy2021-06-071-2/+9
* bpo-44320: Fix markup for W3C C14N test suite (GH-26556)NAKAMURA Osamu2021-06-061-1/+1
* 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-44305: Improve syntax error for try blocks without except or finally (GH-...Pablo Galindo2021-06-031-0/+14
* bpo-42862: Use functools.lru_cache iso. _sqlite.Cache in sqlite3 module (GH-2...Erlend Egeberg Aasland2021-06-031-1/+1
* bpo-39573: Py_TYPE becomes a static inline function (GH-26493)Victor Stinner2021-06-032-3/+38
* bpo-43693: Add new internal code objects fields: co_fastlocalnames and co_fas...Eric Snow2021-06-031-3/+2
* bpo-39560: Document PyUnicode_FromKindAndData() kind transformation (GH-23848)Zackery Spytz2021-06-031-0/+6
* bpo-43858: Add logging.getLevelNamesMapping() (GH-26459)andrei kulakov2021-06-031-0/+8
* Add bpo-42914 to What's New (GH-25124)Wm. Keith van der Meulen2021-06-031-0/+3
* Typo fix in asyncio-eventloop.rst (GH-26482)Zac Bentley2021-06-021-1/+1
* bpo-44263: Py_TPFLAGS_HAVE_GC requires tp_traverse (GH-26463)Victor Stinner2021-06-011-1/+6
* bpo-44279: [doc] reword contextlib.suppress documentation (GH-26428)MapleCCC2021-06-011-2/+3
* bpo-44246: Remove note about access by index now that a compatibility shim is...Jason R. Coombs2021-05-311-4/+1