23190 Commits (0400a7f2f8abec8d441990e951cc25f69a2a4036)

Author SHA1 Message Date
Mathieu Dupuy 8aab84312e
Fix missing space in docs(GH-19866) 6 years ago
Raymond Hettinger 190fac99c5
bpo-40465: Deprecate the optional argument to random.shuffle(). (#19867) 6 years ago
Sander 766352320f
bpo-40419: timeit CLI docs now mention 1,2,5,10,... trials instead of powers of 10 (GH-19752) 6 years ago
Serhiy Storchaka 531d1e5412
bpo-39435: Make the first argument of pickle.loads() positional-only. (GH-19846) 6 years ago
Shantanu 289842ae82
bpo-39435: Fix docs for pickle.loads (GH-18160) 6 years ago
Shantanu 831d58d786
bpo-39691: Clarify io.open_code behavior (GH-19824) 6 years ago
Victor Stinner 252346acd9
bpo-40453: Add PyConfig._isolated_subinterpreter (GH-19820) 6 years ago
Noah Doersing 8bcfd31cc0
Change 'exception happened' to 'exception occurred' in two places (#19767) 6 years ago
lrjball 3209cbd99b
bpo-40394 - difflib.SequenceMatched.find_longest_match default args (GH-19742) 6 years ago
karl ding 360371f79c
bpo-40291: Add support for CAN_J1939 sockets (GH-19538) 6 years ago
Alex Povel fd33cdbd05
Fix plural typo in documentation (GH-19799) 6 years ago
Victor Stinner e5963ee320
What's New in Python 3.9: Reorganize C API Changes (GH-19794) 6 years ago
Victor Stinner 9a8c1315c3
bpo-40428: Cleanup free list part of C API Changes doc (GH-19793) 6 years ago
Serhiy Storchaka bfb1cf4465
bpo-40275: Move transient_internet from test.support to socket_helper (GH-19711) 6 years ago
Zackery Spytz bb4a585d90
bpo-40428: Remove references to Py*_ClearFreeList in the docs (GH-19783) 6 years ago
Victor Stinner 7036477323
bpo-40421: Add PyFrame_GetBack() function (GH-19765) 6 years ago
Victor Stinner 4386b9045e
bpo-40429: PyThreadState_GetFrame() returns a strong ref (GH-19781) 6 years ago
Victor Stinner ae00a5a885
bpo-40428: Remove PyTuple_ClearFreeList() function (GH-19769) 6 years ago
Victor Stinner 8852ad4208
bpo-40429: PyFrame_GetCode() now returns a strong reference (GH-19773) 6 years ago
Victor Stinner 6d86a2331e
bpo-40429: PyFrame_GetCode() result cannot be NULL (GH-19772) 6 years ago
Ethan Onstott d9a43e20fa
bpo-40025: Require _generate_next_value_ to be defined before members (GH-19098) 6 years ago
Victor Stinner a42ca74fa3
bpo-40421: Add PyFrame_GetCode() function (GH-19757) 6 years ago
Victor Stinner 7c59d7c986
bpo-40421: Add pyframe.h header file (GH-19755) 6 years ago
Victor Stinner 9adccc1384
bpo-30966: Add multiprocessing.SimpleQueue.close() (GH-19735) 6 years ago
Dong-hee Na c5c42815ec
bpo-40375: Implement imaplib.IMAP4.unselect (GH-19712) 6 years ago
Zackery Spytz caf1aadf3d
bpo-40348: Fix typos in the programming FAQ (GH-19729) 6 years ago
Brad Solomon b54e46cb57
bpo-38387: Formally document PyDoc_STRVAR and PyDoc_STR macros (GH-16607) 6 years ago
Raymond Hettinger 88499f15f5
bpo-40387: Improve queue join() example. (GH-19724) 6 years ago
Heshy Roskes ef33712baa
Fix typo in object.__format__ docs (GH-19504) 6 years ago
Serhiy Storchaka 515fce4fc4
bpo-40275: Avoid importing logging in test.support (GH-19601) 6 years ago
Serhiy Storchaka 16994912c9
bpo-40275: Avoid importing socket in test.support (GH-19603) 6 years ago
Cajetan Rodrigues d4f3923d59
bpo-40279: Add some error-handling to the module initialisation docs example (GH-19705) 6 years ago
Guido van Rossum 0e80b561d4
bpo-40334: Add What's New sections for PEP 617 and PEP 585 (GH-19704) 6 years ago
Cajetan Rodrigues 5aafa54879
bpo-40340: Separate examples more clearly in the programming FAQ (GH-19688) 6 years ago
Carl Meyer 503de7149d
bpo-40360: Deprecate lib2to3 module in light of PEP 617 (GH-19663) 6 years ago
Victor Stinner e6f8abd500
bpo-38061: subprocess uses closefrom() on FreeBSD (GH-19697) 6 years ago
Victor Stinner d663d34685
bpo-39983: Add test.support.print_warning() (GH-19683) 6 years ago
Victor Stinner 1def7754b7
bpo-40334: Rename PyConfig.use_peg to _use_peg_parser (GH-19670) 6 years ago
Pablo Galindo c5fc156852
bpo-40334: PEP 617 implementation: New PEG parser for CPython (GH-19503) 6 years ago
sweeneyde a81849b031
bpo-39939: Add str.removeprefix and str.removesuffix (GH-18939) 6 years ago
Batuhan Taşkaya 4454057269
bpo-39562: Prevent collision of future and compiler flags (GH-19230) 6 years ago
Raymond Hettinger d3a8d616fa
Small improvements to the recipes and examples. (GH-19635) 6 years ago
Kyle Stanley 9c82ea7868
bpo-34037: Add Python API whatsnew for loop.shutdown_default_executor() (#19634) 6 years ago
Tim Hoffmann 8aea4b3605
bpo-40148: Add PurePath.with_stem() (GH-19295) 6 years ago
Kyle Stanley 1ac6e37929
bpo-39207: Spawn workers on demand in ProcessPoolExecutor (GH-19453) 6 years ago
Tim Lo c12375aa0b
bpo-39285: Clarify example for PurePath.match (GH-19458) 6 years ago
Raymond Hettinger 4fe002045f
bpo-40325: Deprecate set object support in random.sample() (GH-19591) 6 years ago
Furkan Önder 482259d0dc
bpo-27635: Fix pickle documentation about `__new__` not being called. (GH-19269) 6 years ago
Serhiy Storchaka 2b5603140c
bpo-40178: Convert the remaining os functions to Argument Clinic. (GH-19360) 6 years ago
Serhiy Storchaka 7e64414f57
bpo-40257: Improve help for the typing module (GH-19546) 6 years ago