summaryrefslogtreecommitdiffstats
path: root/Doc
Commit message (Expand)AuthorAgeFilesLines
...
* bpo-21302: Add nanosleep() implementation for time.sleep() in Unix (GH-28545)Victor Stinner2021-09-252-10/+13
* bpo-43914: Whats New 310: add new SyntaxError attributes (GH-28558)Terry Jan Reedy2021-09-251-1/+6
* bpo-45277: Fix typo in codecs doc (GH-28555)Terry Jan Reedy2021-09-251-1/+1
* bpo-44019: Add missing comma to operator.call doc (GH-28551)Terry Jan Reedy2021-09-241-1/+1
* bpo-44019: Implement operator.call(). (GH-27888)Antony Lee2021-09-242-0/+19
* bpo-38623: Add note about site module (site-packages) (GH-16974)Peter Bittner2021-09-231-1/+2
* [docs] Update documentation for `multiprocessing.get_start_method` (GH-18170)Sam Sneddon2021-09-231-1/+7
* Fix legacy logging module URL (GH-28528)Sean Leavey2021-09-231-1/+1
* bpo-43760: Document PyThreadState.use_tracing removal (GH-28527)Victor Stinner2021-09-231-0/+3
* bpo-41137: Reorganize What's New in Python 3.11 (GH-28518)Victor Stinner2021-09-231-78/+77
* bpo-39549: reprlib.Repr uses a “fillvalue” attribute (GH-18343)Alexander Böhn2021-09-221-0/+8
* bpo-41203: Replace Mac OS X and OS X with macOS (GH-28515)Serhiy Storchaka2021-09-2229-69/+69
* bpo-21302: time.sleep() uses waitable timer on Windows (GH-28483)Victor Stinner2021-09-222-13/+31
* [codemod] Fix non-matching bracket pairs (GH-28473)Mohamad Mansour2021-09-214-4/+4
* bpo-45246: Document that sorted() only uses "<" comparisons (GH-28494)Raymond Hettinger2021-09-211-0/+9
* Docs: Clarify the before_and_after() example (GH-28458)Raymond Hettinger2021-09-201-3/+4
* bpo-30637: Improve the docs of ast.parse regarding differences with compile()...Pablo Galindo Salgado2021-09-191-0/+13
* Clean up initialization __class_getitem__ with Py_GenericAlias. (GH-28450)Serhiy Storchaka2021-09-191-1/+1
* bpo-45198: __set_name__ documentation not clear about its usage with non-desc...Raymond Hettinger2021-09-181-29/+34
* Fix minor typo in Doc/c-api/type.rst (GH-28432)Konstantin Popov2021-09-181-1/+1
* [doc] Clarify exception in `multiprocessing.cpu_count` (GH-23660)Emmanuel Arias2021-09-171-1/+2
* bpo-42038: fix description of returned list of lines (GH-27529)andrei kulakov2021-09-171-6/+6
* [doc] Add a missing apostrophe in a code example in venv.rst (GH-28391)Arkaprabha Chakraborty2021-09-171-1/+1
* bpo-45116: Py_DEBUG ignores Py_ALWAYS_INLINE (GH-28419)Victor Stinner2021-09-171-0/+3
* bpo-45116: Add the Py_ALWAYS_INLINE macro (GH-28390)Victor Stinner2021-09-171-0/+19
* bpo-45217: adds note that `allow_no_value` in `configparser` is optional (GH-...Nikita Sobolev2021-09-171-1/+2
* bpo-45162: Remove many old deprecated unittest features (GH-28268)Serhiy Storchaka2021-09-173-50/+30
* Fix typo and add a module prefix (GH-28401)Raymond Hettinger2021-09-171-2/+2
* docs: correct references to __isub__ etc (GH-28297)David Hewitt2021-09-161-132/+132
* bpo-45155 : Default arguments for int.to_bytes(length=1, byteorder=sys.byteor...Barry Warsaw2021-09-161-17/+27
* bpo-39710: Remove Python 2-specific sentence from calendar documentation (GH-...Hubert Badocha2021-09-151-4/+1
* bpo-45089: Improve sqlite3 trace callback docs (GH-28238)Erlend Egeberg Aasland2021-09-151-5/+13
* bpo-5846: Deprecate obsolete methods in `unittest` (GH-28299)Erlend Egeberg Aasland2021-09-151-0/+15
* 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