summaryrefslogtreecommitdiffstats
path: root/Doc
Commit message (Expand)AuthorAgeFilesLines
* bpo-24416: Return named tuple from date.isocalendar() (GH-20113)Paul Ganssle2020-05-162-8/+19
* bpo-40192: Use thread_cputime for time.thread_time to improve resolution (GH-...Batuhan Taskaya2020-05-161-0/+8
* bpo-39075: types.SimpleNamespace no longer sorts attributes in its repr (GH-1...Zackery Spytz2020-05-161-2/+4
* bpo-31033: Add a msg argument to Future.cancel() and Task.cancel() (GH-19979)Chris Jerdonek2020-05-152-2/+11
* bpo-40637: Add option to disable builtin hashes (GH-20121)Christian Heimes2020-05-151-0/+9
* bpo-40445: Update compileall.compile_dir docs (GH-19806)Shantanu2020-05-151-1/+2
* bpo-40607: Reraise exception during task cancelation in asyncio.wait_for() (G...romasku2020-05-151-1/+2
* bpo-38872: Document exec symbol for codeop.compile_command (GH-20047)Joannah Nanjekye2020-05-152-4/+5
* bpo-40495: compileall option to hardlink duplicate pyc files (GH-19901)Lumír 'Frenzy' Balhar2020-05-142-5/+26
* bpo-39465: Remove _PyUnicode_ClearStaticStrings() from C API (GH-20078)Victor Stinner2020-05-131-0/+3
* bpo-34790: add version of removal of explicit passing of coros to `asyncio.wa...jack11422020-05-131-1/+1
* Fix Wikipedia link (GH-20031)Allen Guo2020-05-121-5/+5
* bpo-40571: Make lru_cache(maxsize=None) more discoverable (GH-20019)Raymond Hettinger2020-05-121-0/+26
* bpo-40584: Update PyType_FromModuleAndSpec() to process tp_vectorcall_offset ...Hai Shi2020-05-112-3/+6
* bpo-36346: array: Don't use deprecated APIs (GH-19653)Inada Naoki2020-05-112-6/+13
* Add link to Enum class (GH-19884)Andre Delfino2020-05-101-1/+1
* bpo-39791: Add files() to importlib.resources (GH-19722)Jason R. Coombs2020-05-081-0/+37
* bpo-40541: Add optional *counts* parameter to random.sample() (GH-19970)Raymond Hettinger2020-05-081-7/+14
* Make the first dataclass example more useful (GH-19994)Ned Batchelder2020-05-081-0/+2
* bpo-40273: Reversible mappingproxy (FH-19513)Zackery Spytz2020-05-081-0/+6
* bpo-40517: Implement syntax highlighting support for ASDL (GH-19967)Batuhan Taskaya2020-05-073-2/+54
* bpo-38787: Update structures.rst docs (PEP 573) (GH-19980)Hai Shi2020-05-071-2/+2
* bpo-38787: C API for module state access from extension methods (PEP 573) (GH...Petr Viktorin2020-05-072-4/+82
* Fix typo in sqlite3 documentation (GH-19965)Naglis2020-05-061-1/+1
* Revert "bpo-40517: Implement syntax highlighting support for ASDL (#19928)" (...Raymond Hettinger2020-05-063-54/+2
* bpo-40517: Implement syntax highlighting support for ASDL (#19928)Batuhan Taskaya2020-05-063-2/+54
* bpo-32117: Updated Simpsons names in docs (GH-19737)Javier Buzzi2020-05-051-2/+2
* bpo-40286: Put methods in correct sections. Add security notice to use secret...Raymond Hettinger2020-05-051-10/+15
* bpo-40499: Mention that asyncio.wait() needs a non-empty aws set (GH-19900)Joel Rosdahl2020-05-041-0/+2
* bpo-39470: Indicate that ``os.makedirs`` is equivalent to ``Path.mkdir`` (GH-...Joannah Nanjekye2020-05-041-0/+1
* bpo-40360: Add a What's New entry for lib2to3 pending deprecation (GH-19898)Miro Hrončok2020-05-041-0/+10
* Remove outdated and confusing advice about setting maxsize (GH-19889)Raymond Hettinger2020-05-031-2/+1
* Fix missing space in docs(GH-19866)Mathieu Dupuy2020-05-021-1/+1
* bpo-40465: Deprecate the optional argument to random.shuffle(). (#19867)Raymond Hettinger2020-05-021-0/+3
* bpo-40419: timeit CLI docs now mention 1,2,5,10,... trials instead of powers ...Sander2020-05-021-1/+2
* bpo-39435: Make the first argument of pickle.loads() positional-only. (GH-19846)Serhiy Storchaka2020-05-021-1/+1
* bpo-39435: Fix docs for pickle.loads (GH-18160)Shantanu2020-05-011-2/+2
* bpo-39691: Clarify io.open_code behavior (GH-19824)Shantanu2020-05-011-4/+5
* bpo-40453: Add PyConfig._isolated_subinterpreter (GH-19820)Victor Stinner2020-05-011-0/+2
* Change 'exception happened' to 'exception occurred' in two places (#19767)Noah Doersing2020-05-011-1/+1
* bpo-40394 - difflib.SequenceMatched.find_longest_match default args (GH-19742)lrjball2020-04-301-1/+4
* bpo-40291: Add support for CAN_J1939 sockets (GH-19538)karl ding2020-04-291-1/+18
* Fix plural typo in documentation (GH-19799)Alex Povel2020-04-291-1/+1
* What's New in Python 3.9: Reorganize C API Changes (GH-19794)Victor Stinner2020-04-291-159/+173
* bpo-40428: Cleanup free list part of C API Changes doc (GH-19793)Victor Stinner2020-04-291-11/+9
* bpo-40275: Move transient_internet from test.support to socket_helper (GH-19711)Serhiy Storchaka2020-04-291-7/+8
* bpo-40428: Remove references to Py*_ClearFreeList in the docs (GH-19783)Zackery Spytz2020-04-297-42/+0
* bpo-40421: Add PyFrame_GetBack() function (GH-19765)Victor Stinner2020-04-292-0/+12
* bpo-40429: PyThreadState_GetFrame() returns a strong ref (GH-19781)Victor Stinner2020-04-291-3/+3
* bpo-40428: Remove PyTuple_ClearFreeList() function (GH-19769)Victor Stinner2020-04-291-0/+13