summaryrefslogtreecommitdiffstats
path: root/Doc
Commit message (Expand)AuthorAgeFilesLines
* bpo-45020: Add -X frozen_modules=[on|off] to explicitly control use of frozen...Eric Snow2021-09-141-0/+9
* bpo-4356: Mention the new key arguments for the bisect module APIs in the 3.1...Pablo Galindo Salgado2021-09-141-0/+6
* closes bpo-45190: Update Unicode data to version 14.0.0. (GH-28336)Benjamin Peterson2021-09-144-8/+13
* bpo-45168: change dis output to omit missing values rather than replacing the...Irit Katriel2021-09-141-2/+3
* bpo-45173 Remove configparser deprecations (GH-28292)Hugo van Kemenade2021-09-132-22/+10
* bpo-21302: Update time.sleep() doc for clock_nanosleep() (GH-28311)Victor Stinner2021-09-132-19/+32
* bpo-44987: Fix typo whatsnew 3.11 (GH-28293)Dong-hee Na2021-09-111-1/+1
* bpo-44987: Speed up unicode normalization of ASCII strings (GH-28283)Dong-hee Na2021-09-111-0/+3
* bpo-9811: [doc] strftime handling of unsupported format specifiers is platfor...Irit Katriel2021-09-101-1/+2
* bpo-44964: Correct the note about the f_lasti field (GH-28208)Pablo Galindo Salgado2021-09-102-4/+4
* bpo-45132: Fix the reStructuredText markup error. (GH-28270)Serhiy Storchaka2021-09-101-1/+1
* bpo-40563: Support pathlike objects on dbm/shelve (GH-21849)Henry-Joseph Audéoud2021-09-102-0/+17
* bpo-45024 and bpo-23864: Document how interface testing works with the collec...Raymond Hettinger2021-09-101-63/+164
* Fix minor typo in 3.10.rst (GH-28253)D.Lintin2021-09-091-1/+1
* Specify default order in memoryview.tobytes() docs (GH-27936)andrei kulakov2021-09-091-1/+1
* Fix small mistake in fileinput documentation (GH-28241)Jean-Abou-Samra2021-09-091-1/+1
* bpo-38371: Remove deprecated `tkinter` split() method (GH-28237)Erlend Egeberg Aasland2021-09-081-0/+3
* bpo-44340: Update whatsnews for ThinLTO (GH-28229)Dong-hee Na2021-09-081-0/+3
* bpo-45129 Remove deprecated reuse_address (GH-28207)Hugo van Kemenade2021-09-082-19/+25
* bpo-45132 Remove deprecated __getitem__ methods (GH-28225)Hugo van Kemenade2021-09-084-16/+17
* bpo-39573: Py_TYPE becomes a static inline function (GH-28128)Victor Stinner2021-09-082-3/+38
* bpo-24888: Clarify subprocess.check_call propagates exceptions if unable to s...DonnaDia2021-09-071-0/+2
* Add more itertool recipes (GH-28165)Raymond Hettinger2021-09-071-2/+20
* bpo-45104: Clarify when __init__ is called (GH-28210)Raymond Hettinger2021-09-071-1/+1
* bpo-44964: Add a note explaining the new semantics of f_last_i in frame objec...Pablo Galindo Salgado2021-09-072-2/+9
* bpo-45123: PyAiter_Check and PyObject_GetAiter fix & rename. (GH-28194)Yury Selivanov2021-09-074-8/+8
* bpo-45124: Remove the bdist_msi command (GH-28195)Hugo van Kemenade2021-09-074-28/+7
* bpo-42238: [doc] remove unused, and deduplicate, suspicious ignore rules. (GH...Julien Palard2021-09-062-21/+11
* More useful OrderedDict LRU recipes (GH-28164)Raymond Hettinger2021-09-051-19/+76
* bpo-44571: Add itertool recipe for a variant of takewhile() (GH-28167)Raymond Hettinger2021-09-051-1/+28
* Add What's New for dataclass keyword-only parameters. (GH-28158)Eric V. Smith2021-09-041-1/+60
* bpo-45075: distinguish between frame and FrameSummary in traceback mo… (GH-...Irit Katriel2021-09-031-5/+5
* bpo-42255: Deprecate webbrowser.MacOSX from Python 3.11 (GH-27837)Dong-hee Na2021-09-032-2/+9
* bpo-45094: Add Py_NO_INLINE macro (GH-28140)Victor Stinner2021-09-031-43/+56
* bpo-45082: Cleanup ctypes.c_buffer alias (GH-28129)Victor Stinner2021-09-021-4/+3
* [doc] Reword sentinel object summary in dataclasses (GH-27792)Ville Korhonen2021-09-021-4/+3
* bpo-40360: [doc] Rephrase deprecation note about lib2to3 (GH-28122)Łukasz Langa2021-09-021-6/+9
* bpo-43613: Faster implementation of gzip.compress and gzip.decompress (GH-27941)Ruben Vorderman2021-09-022-21/+42
* [doc] Link to deprecation policy PEP from the DeprecationWarning documentatio...Łukasz Langa2021-09-021-0/+4
* bpo-37330: open() no longer accept 'U' in file mode (GH-28118)Victor Stinner2021-09-024-22/+22
* bpo-45085: Remove the binhex module (GH-28117)Victor Stinner2021-09-024-105/+14
* bpo-40360: Deprecate the lib2to3 package (GH-28116)Victor Stinner2021-09-021-0/+3
* bpo-31299: make it possible to filter out frames from tracebacks (GH-28067)Irit Katriel2021-08-311-1/+2
* bpo-44135: [docs] Fix inline markup (GH-28095)Ken Jin2021-08-311-1/+1
* bpo-45060: Get rid of few uses of the equality operators with None (GH-28087)Serhiy Storchaka2021-08-311-1/+1
* bpo-44135: Refine explanation of how passing tuples to issubclass() behaves (...Zack Kneupper2021-08-311-3/+3
* bpo-44925: [docs] Fix confusing deprecation notice for typing.IO (GH-28004)DonnaDia2021-08-311-4/+4
* bpo-45019: Add a tool to generate list of modules to include for frozen modul...Eric Snow2021-08-301-1/+1
* bpo-16379: expose SQLite error codes and error names in `sqlite3` (GH-27786)Erlend Egeberg Aasland2021-08-303-1/+24
* bpo-44394: Update libexpat copy to 2.4.1 (GH-26945)Victor Stinner2021-08-291-14/+18