summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* Improve dataclass docstring (gh-94686)Tom Fryers2022-07-091-9/+8
* gh-94637: Release GIL in SSLContext.set_default_verify_paths (GH-94658)Christian Heimes2022-07-092-1/+8
* pycore_interp.h: Fix comment about pytypedefs.h (#93188)Itamar Ostricher2022-07-091-1/+1
* gh-93649: Fix dependencies of _testcapi (#94695)Christian Heimes2022-07-093-1/+3
* gh-94700: Rewrite the logging.Formatter API ref in structured form (GH-94701)CAM Gerlach2022-07-091-43/+41
* gh-94607: Fix subclassing generics (GH-94610)Ken Jin2022-07-094-0/+38
* GH-93252: Fix error handling for failed Python calls (GH-94693)Brandt Bucher2022-07-093-1/+19
* Increase test coverage of Objects/exceptions.c (GH-94674)Irit Katriel2022-07-082-5/+59
* GH-90699: Intern statically allocated strings (GH-93597)Kumar Aditya2022-07-083-4/+628
* gh-93649: Split vectorcall testing from _testcapimodule.c (GH-94549)Petr Viktorin2022-07-089-253/+292
* Use mdash-es consistently in the library docs index (#92762)Oleg Iarygin2022-07-081-4/+4
* gh-94199: Remove the ssl.wrap_socket() function (#94203)Victor Stinner2022-07-084-60/+16
* gh-94215: Fix error handling for line-tracing events (GH-94681)Brandt Bucher2022-07-083-6/+17
* gh-94622: Add more references to the sqlite3 types anchor (#94623)Erlend Egeberg Aasland2022-07-081-8/+8
* gh-94321: Document sqlite3.PrepareProtocol (#94620)Erlend Egeberg Aasland2022-07-073-0/+17
* GH-90699: Move generated static initializer to pycore_runtime_generated.h (GH...Kumar Aditya2022-07-077-1150/+1170
* gh-93654: Add module docstring to pathlib (GH-94611)Samuel Sloniker2022-07-071-0/+7
* gh-94343: Ease initialization of reprlib.Repr attributes (GH-94581)finefoot2022-07-074-14/+60
* gh-94642: Remove -D_XOPEN_SOURCE from more pkg-config CFLAGS (#94657)Christian Heimes2022-07-072-2/+10
* gh-93910: Fix enum performance regression (GH-94614)Michael Droettboom2022-07-073-8/+13
* GH-94644: fix test_curses ref leak (GH-94647)Kumar Aditya2022-07-071-0/+1
* gh-94644: Define HAVE_NCURSESW in pkg-config branch (#94651)Christian Heimes2022-07-072-0/+3
* gh-94215: Add reproducer for segfault in frame_setlineno() (GH-94563)Christian Heimes2022-07-071-6/+104
* gh-94430: Allow params named `module` or `self` with custom C names in Argume...Erlend Egeberg Aasland2022-07-073-2/+50
* gh-94628: Add explicit parameter list to sqlite3.connect docs (#94629)Erlend Egeberg Aasland2022-07-071-76/+105
* gh-92228: disable the compiler's 'small exit block inlining' optimization for...Irit Katriel2022-07-075-20/+33
* gh-94630: Update sqlite3 docs with positional-only and keyword-only symbols (...Erlend Egeberg Aasland2022-07-061-11/+11
* gh-94017: Improve clarity of sqlite3 transaction handling docs (#94320)Erlend Egeberg Aasland2022-07-061-39/+61
* GH-93896: AAlways set event loop in asyncio.run and IsolatedAsyncioTestCase (...Kumar Aditya2022-07-063-0/+19
* gh-90005: Port readline and curses to PY_STDLIB_MOD (GH-94452)Christian Heimes2022-07-066-443/+1928
* gh-94438: in frameobject's mark_stacks switch, the PUSH_EXC_INFO and POP_EXCE...Irit Katriel2022-07-061-8/+10
* gh-94510: Raise on re-entrant calls to sys.setprofile and sys.settrace (GH-94...Pablo Galindo Salgado2022-07-055-3/+105
* gh-91330: Tests and docs for dataclass descriptor-typed fields (GH-94424)Erik De Bonte2022-07-053-0/+167
* gh-94360: Fix a tokenizer crash when reading encoded files with syntax errors...Pablo Galindo Salgado2022-07-053-5/+15
* gh-90355: Add isolated flag if currently isolated (GH-92857)Carter Dodd2022-07-052-2/+13
* gh-92897: Ensure `venv --copies` respects source build property of the creati...Jeremy Kloth2022-07-055-40/+76
* Docs: Convert PEP 630 (Isolating Extension Modules) to a HOWTO (GH-94489)Petr Viktorin2022-07-052-0/+537
* bpo-46755: Don't log stack info twice in QueueHandler (GH-31355)Erik Montnemery2022-07-054-3/+8
* gh-94485: Set line number of module's RESUME instruction to 0, as specified b...Irit Katriel2022-07-057-26/+33
* gh-84753: Clarify change made to `inspect` functions (#94554)Ɓukasz Langa2022-07-051-2/+6
* gh-94379: Remove zipimport find_loader() and find_module() methods (#94380)Victor Stinner2022-07-054-74/+8
* Docs: remove redundant "adverb-adjective" hyphens from compound modifiers (GH...Ned Batchelder2022-07-0571-118/+118
* gh-94538: Fix Argument Clinic output to custom file (#94539)Erlend Egeberg Aasland2022-07-052-1/+3
* gh-93626: Set the release for `__future__.annotations` to `None` (GH-93628)KotlinIsland2022-07-053-3/+11
* gh-93939: Add script to check extension modules (#94545)Christian Heimes2022-07-054-41/+504
* gh-94383: Remove ElementTree.Element.copy() method (#94384)Victor Stinner2022-07-044-42/+11
* gh-94352: shlex.split() no longer accepts None (#94353)Victor Stinner2022-07-045-9/+14
* gh-94512: Fix forced arg format in AC-processed multiprocessing (GH-94517)Oleg Iarygin2022-07-042-7/+33
* gh-94512: Fix forced arg format in AC-processed winreg (GH-94513)Oleg Iarygin2022-07-042-22/+201
* gh-94512: Fix forced arg format in AC-processed msvcrtmodule (GH-94514)Oleg Iarygin2022-07-042-6/+28