summaryrefslogtreecommitdiffstats
path: root/Python/bltinmodule.c
Commit message (Expand)AuthorAgeFilesLines
* gh-92536: Remove PyUnicode_READY() calls (#105210)Victor Stinner2023-06-011-2/+0
* gh-103886: Improve `builtins.__doc__` (#104179)Tomas R2023-05-071-2/+9
* gh-94673: Ensure Builtin Static Types are Readied Properly (gh-103940)Eric Snow2023-04-271-1/+1
* gh-102939: Fix "conversion from Py_ssize_t to long" warning in builtins (GH-1...Nikita Sobolev2023-03-231-2/+2
* GH-101291: Rearrange the size bits in PyLongObject (GH-102464)Mark Shannon2023-03-221-8/+8
* gh-102660: Fix Refleaks in import.c (#102744)Eric Snow2023-03-161-3/+0
* gh-102660: Handle m_copy Specially for the sys and builtins Modules (gh-102661)Eric Snow2023-03-141-0/+3
* gh-102356: Add thrashcan macros to filter object dealloc (#102426)Marta Gómez Macías2023-03-051-0/+2
* GH-101291: Refactor the `PyLongObject` struct into object header and PyLongVa...Mark Shannon2023-01-301-2/+2
* GH-90829: Fix empty iterable error message in min/max (#31181)Nnarol2023-01-081-1/+1
* gh-100776: Fix misleading default value in help(input) (#100788)Shantanu2023-01-081-2/+2
* gh-100357: Convert several functions in `bltinsmodule` to AC (#100358)Nikita Sobolev2022-12-241-98/+108
* GH-100425: Improve accuracy of builtin sum() for float inputs (GH-100426)Raymond Hettinger2022-12-231-1/+20
* bpo-15999: Accept arbitrary values for boolean parameters. (#15609)Serhiy Storchaka2022-12-031-2/+2
* gh-99537: Use Py_SETREF(var, NULL) in C code (#99687)Victor Stinner2022-11-231-8/+4
* gh-99537: Use Py_SETREF() function in C code (#99657)Victor Stinner2022-11-221-2/+1
* gh-99300: Replace Py_INCREF() with Py_NewRef() (#99530)Victor Stinner2022-11-161-2/+1
* gh-99300: Use Py_NewRef() in Python/ directory (#99317)Victor Stinner2022-11-101-24/+12
* gh-96526: Clarify format and __format__ docstrings (gh-96648)Michael2022-10-031-5/+8
* Fix typos in `bltinmodule.c`. (GH-97766)Nikita Sobolev2022-10-031-7/+7
* GH-90230: Add stats to breakdown the origin of calls to `PyEval_EvalFrame` (G...Mark Shannon2022-05-271-0/+1
* gh-92203: Add closure support to exec(). (#92204)larryhastings2022-05-061-8/+52
* gh-90667: Add specializations of Py_DECREF when types are known (GH-30872)Dennis Sweeney2022-04-191-1/+1
* bpo-47164: Add _PyCFunction_CAST() macro (GH-32192)Victor Stinner2022-03-311-13/+13
* Use FASTCALL for __import__ (GH-31752)Kumar Aditya2022-03-111-27/+30
* bpo-46541: Replace core use of _Py_IDENTIFIER() with statically initialized g...Eric Snow2022-02-081-42/+30
* bpo-46417: Clear more static types (GH-30796)Victor Stinner2022-01-221-5/+0
* bpo-46417: Use _PyType_CAST() in Python directory (GH-30769)Victor Stinner2022-01-211-2/+2
* bpo-44024: Improve the TypeError message in getattr and hasattr (GH-25863)Géry Ogam2022-01-181-10/+0
* bpo-44525: Copy free variables in bytecode to allow calls to inner functions ...Mark Shannon2021-11-231-2/+1
* pycore_pystate.h no longer redefines PyThreadState_GET() (GH-28921)Victor Stinner2021-10-131-1/+1
* bpo-45439: Move _PyObject_CallNoArgs() to pycore_call.h (GH-28895)Victor Stinner2021-10-121-0/+1
* bpo-45439: Rename _PyObject_CallNoArg() to _PyObject_CallNoArgs() (GH-28891)Victor Stinner2021-10-111-1/+1
* Remove trailing spaces. (GH-28706)Serhiy Storchaka2021-10-031-1/+1
* bpo-24076: Fix reference in sum() introduced by GH-28469 (GH-28493)Pablo Galindo Salgado2021-09-211-1/+2
* bpo-24076: Inline single digit unpacking in the integer fastpath of sum() (GH...scoder2021-09-211-1/+9
* bpo-43413: Fix handling keyword arguments in subclasses of some buitin classe...Serhiy Storchaka2021-09-121-2/+4
* bpo-45123: PyAiter_Check and PyObject_GetAiter fix & rename. (GH-28194)Yury Selivanov2021-09-071-1/+1
* bpo-44856: Possible reference leak in error paths of update_bases() and __bui...Pablo Galindo Salgado2021-08-071-22/+13
* bpo-20201: variadic arguments support for AC (GH-18609)Batuhan Taskaya2021-07-161-38/+42
* bpo-43918: document signature and default argument of `anext` builtin (#25551)Erik Welch2021-06-221-2/+5
* bpo-43892: Make match patterns explicit in the AST (GH-25585)Nick Coghlan2021-04-291-5/+1
* bpo-43244: Remove Yield macro from pycore_ast.h (GH-25243)Victor Stinner2021-04-071-1/+0
* bpo-31861: Fix reference leak in builtin_anext_impl() (GH-25008)Pablo Galindo2021-03-241-1/+4
* bpo-43244: Remove the pyarena.h header (GH-25007)Victor Stinner2021-03-241-4/+4
* bpo-43244: Add pycore_compile.h header file (GH-25000)Victor Stinner2021-03-231-2/+3
* bpo-31861: Add aiter and anext to builtins (#23847)Joshua Bronson2021-03-231-0/+55
* bpo-43244: Remove ast.h, asdl.h, Python-ast.h headers (GH-24933)Victor Stinner2021-03-231-2/+1
* bpo-43575: Use PEP 590 vectorcall to speed up map() (GH-24955)Dong-hee Na2021-03-221-2/+43
* bpo-43244: Remove the PyAST_Validate() function (GH-24911)Victor Stinner2021-03-181-1/+2