summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* bpo-35134: Move non-limited C API files to Include/cpython/ (GH-24561)Nicholas Sim2021-02-1914-34/+42
* bpo-43268: local_clear() uses _PyInterpreterState_GET() (GH-24583)Victor Stinner2021-02-191-15/+14
* bpo-43268: Pass interp rather than tstate to internal functions (GH-24580)Victor Stinner2021-02-1929-245/+240
* bpo-43270: Remove private _PyErr_OCCURRED() macro (GH-24579)Victor Stinner2021-02-193-7/+3
* bpo-43268: Remove abusive usage of tstate in sysmodule.c (#24581)Victor Stinner2021-02-191-18/+12
* bpo-43268: _Py_IsMainInterpreter() now expects interp (GH-24577)Victor Stinner2021-02-199-15/+15
* bpo-40522: Replace PyThreadState_GET() with PyThreadState_Get() (GH-24575)Victor Stinner2021-02-192-5/+5
* bpo-43268: Replace _PyThreadState_GET() with _PyInterpreterState_GET() (GH-24...Victor Stinner2021-02-193-11/+9
* bpo-43258: Make sqlite3 callback functions static (GH-24574)Erlend Egeberg Aasland2021-02-191-2/+4
* bpo-43258: Don't allocate sqlite3 aggregate context for empty queries (GH-24569)Erlend Egeberg Aasland2021-02-193-2/+13
* closes bpo-43254: Fix *snprintf() man page refs. (GH-24563)Erlend Egeberg Aasland2021-02-191-2/+2
* bpo-39448: Add regen-frozen makefile target. (GH-18174)Neil Schemenauer2021-02-196-21/+82
* Remove all links to mingw.org (GH-24552)Jeremy Paige2021-02-182-4/+1
* bpo-42990: Refactor _PyFrame_New_NoTrack() (GH-24566)Victor Stinner2021-02-186-112/+114
* bpo-43249: Improve scoping in _pysqlite_fetch_one_row() (GH-24565)Erlend Egeberg Aasland2021-02-181-10/+9
* bpo-43249: sqlite3_column_bytes() must follow sqlite_column_blob() (GH-24562)Erlend Egeberg Aasland2021-02-181-4/+14
* bpo-42960: Add resource.RLIMIT_KQUEUES constant from FreeBSD (GH-24251)David CARLIER2021-02-183-0/+13
* bpo-42990: Add __builtins__ attribute to functions (GH-24559)Victor Stinner2021-02-186-3/+24
* bpo-35134: Move Include/{pyarena.h,pyctype.h} to Include/cpython/ (GH-24550)Nicholas Sim2021-02-179-15/+15
* bpo-40170: Move 3 NEWS entries to the C API section (GH-24555)Erlend Egeberg Aasland2021-02-173-0/+0
* bpo-40170: Always define PyExceptionClass_Name() as a function (GH-24553)Erlend Egeberg Aasland2021-02-173-6/+3
* bpo-43103: Add configure --without-static-libpython (GH-24418)Victor Stinner2021-02-177-25/+113
* Update urllib2.rst (GH-24236)Christian Reich2021-02-170-0/+0
* bpo-40170: Always define PyIter_Check() as a function (GH-24548)Erlend Egeberg Aasland2021-02-165-14/+11
* bpo-35134, Include: Move pytime.h to cpython/pytime.h (GH-23988)Nicholas Sim2021-02-166-10/+6
* bpo-40170: Convert PyDescr_IsData() to static inline function (GH-24535)Erlend Egeberg Aasland2021-02-164-3/+11
* bpo-43155: Add PyCMethod_New to PC/python3dll.c (GH-24500)Zackery Spytz2021-02-162-0/+2
* bpo-42819, readline: Disable bracketed paste (GH-24108)Dustin Rodrigues2021-02-153-0/+32
* Add a warning block around the get_referrers() documentation (GH-24511)Pablo Galindo2021-02-151-4/+5
* bpo-43231: Correctly calculate the curses color pair limit when checking for ...Pablo Galindo2021-02-151-1/+1
* bpo-43231: Fix test.test_curses.TestCurses.test_init_pair when running under ...Pablo Galindo2021-02-151-0/+7
* bpo-42967: Fix urllib.parse docs and make logic clearer (GH-24536)Ken Jin2021-02-155-14/+19
* bpo-43181: Convert PyObject_TypeCheck to static inline function (GH-24533)Erlend Egeberg Aasland2021-02-153-4/+9
* bpo-42967: only use '&' as a query string separator (#24297)Adam Goldschmidt2021-02-1412-47/+186
* bpo-43210: Fix byteswap comment in sha512.module.c (GH-24518)Erlend Egeberg Aasland2021-02-141-1/+1
* bpo-43152: Update assert statement to remove unused warning (GH-24473)Dong-hee Na2021-02-141-2/+1
* bpo-43202: More codeop._maybe_compile clean-ups (GH-24512)Terry Jan Reedy2021-02-131-7/+7
* bpo-43200: Fix link to shutil.copy() in the shutil doc (GH-24505)Zackery Spytz2021-02-131-2/+3
* bpo-43172: readline now passes its tests when built against libedit (GH-24499)Gregory P. Smith2021-02-125-15/+62
* bpo-43204: Fix LibTomCrypt URL in md5module.c and sha*module.c comments (GH-2...Erlend Egeberg Aasland2021-02-124-4/+4
* bpo-43202: Immediately return code object in codeop._maybe_compile (GH-24508)Terry Jan Reedy2021-02-121-4/+2
* bpo-43174: Windows: Use /utf-8 compiler option. (GH-24498)Inada Naoki2021-02-122-0/+2
* bpo-40956: Fix segfault when Connection.backup is called without target (GH-2...Erlend Egeberg Aasland2021-02-104-22/+18
* Fix link to sqlite3 enable_shared_cache documentation (GH-24496)Tom Forbes2021-02-101-1/+1
* bpo-42217: compiler: merge same co_code and co_linetable objects (GH-23056)Inada Naoki2021-02-105-3847/+3847
* bpo-43163: Handle unclosed parentheses in codeop (GH-24483)Pablo Galindo2021-02-093-1/+16
* bpo-43166: Disable ceval.c optimisations for Windows debug builds (GH-24485)Steve Dower2021-02-091-3/+3
* bpo-41824: Add versionadded for typing.ForwardRef docs (#24224)Ken Jin2021-02-091-0/+2
* Improve docs of PEP 604 Union (#24301)Ken Jin2021-02-093-19/+20
* bpo-43162: [Enum] deprecate enum member.member access (GH-24486)Ethan Furman2021-02-093-4/+39