summaryrefslogtreecommitdiffstats
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
* gh-90716: bugfixes and more tests for _pylong. (#99073)Gregory P. Smith2022-11-031-4/+11
* GH-96793: Implement PEP 479 in bytecode. (GH-99006)Mark Shannon2022-11-031-19/+3
* GH-98686: Quicken everything (GH-98687)Brandt Bucher2022-11-023-13/+8
* gh-98852: Fix subscription of type aliases (GH-98920)Serhiy Storchaka2022-11-011-0/+7
* gh-98783: Fix crashes when `str` subclasses are used in `_PyUnicode_Equal` (#...Nikita Sobolev2022-10-301-2/+2
* obmalloc: Remove unused variable. (GH-98770)Benjamin Peterson2022-10-271-3/+1
* GH-96793: Change `FOR_ITER` to not pop the iterator on exhaustion. (GH-96801)Mark Shannon2022-10-271-2/+2
* gh-98627: Use a Switch in PyModule_FromDefAndSpec2() (gh-98734)Eric Snow2022-10-271-14/+18
* gh-90716: add _pylong.py module (#96673)Neil Schemenauer2022-10-261-0/+170
* gh-91058: Add error suggestions to 'import from' import errors (#98305)Pablo Galindo Salgado2022-10-251-4/+16
* gh-96143: Move the perf trampoline files to the Python directory (#98675)Pablo Galindo Salgado2022-10-252-559/+0
* gh-91051: allow setting a callback hook on PyType_Modified (GH-97875)Carl Meyer2022-10-211-3/+97
* gh-98421: Clean Up PyObject_Print (GH-98422)MonadChains2022-10-201-17/+8
* gh-98417: Store int_max_str_digits on the Interpreter State (GH-98418)Eric Snow2022-10-191-3/+3
* gh-98393: os module reject bytes-like, only accept bytes (#98394)Victor Stinner2022-10-181-30/+8
* gh-97982: Factorize PyUnicode_Count() and unicode_count() code (#98025)Nikita Sobolev2022-10-121-60/+26
* gh-97982: Remove asciilib_count() (#98164)Victor Stinner2022-10-112-15/+11
* gh-95756: Free and NULL-out code caches when needed (GH-98181)Ken Jin2022-10-112-0/+3
* gh-95756: Lazily created cached co_* attrs (GH-97791)Ken Jin2022-10-112-12/+72
* gh-91052: Add PyDict_Unwatch for unwatching a dictionary (#98055)Carl Meyer2022-10-081-11/+30
* GH-91052: Add C API for watching dictionaries (GH-31787)Carl Meyer2022-10-071-15/+104
* gh-97943: PyFunction_GetAnnotations should return a borrowed reference. (#97949)larryhastings2022-10-061-2/+5
* gh-95196: Disable incorrect pickling of the C implemented classmethod descrip...Serhiy Storchaka2022-10-051-1/+1
* GH-97779: Ensure that *all* frame objects are backed by "complete" frames (GH...Brandt Bucher2022-10-052-4/+34
* gh-96526: Clarify format and __format__ docstrings (gh-96648)Michael2022-10-034-6/+13
* gh-96512: Move int_max_str_digits setting to PyConfig (#96944)Gregory P. Smith2022-10-031-7/+3
* gh-94808: `_PyLineTable_StartsLine` was not used (GH-96609)Nikita Sobolev2022-10-031-27/+0
* gh-97591: In `Exception.__setstate__()` acquire strong references before call...Ofey Chan2022-10-021-1/+7
* gh-96348: Deprecate the 3-arg signature of coroutine.throw and generator.thro...Ofey Chan2022-09-302-5/+36
* gh-97616: list_resize() checks for integer overflow (#97617)Victor Stinner2022-09-281-2/+8
* bpo-47243: Duplicate entry in 'Objects/unicodetype_db.h' (GH-32376)LiarPrincess2022-09-281-2334/+2322
* gh-96670: Raise SyntaxError when parsing NULL bytes (#97594)Pablo Galindo Salgado2022-09-271-10/+19
* gh-90716: Refactor PyLong_FromString to separate concerns (GH-96808)Oscar Benjamin2022-09-251-258/+297
* Fix minor comment typo in dictobject.c (GH-96960)Samuel2022-09-201-1/+1
* gh-95778: Mention sys.set_int_max_str_digits() in error message (#96874)Victor Stinner2022-09-161-2/+2
* GH-91049: Introduce set vectorcall field API for PyFunctionObject (GH-92257)adphrost2022-09-151-0/+11
* closes gh-96734: Update to Unicode 15.0.0. (GH-96809)Benjamin Peterson2022-09-131-391/+463
* gh-94808: improve comments and coverage of fastsearch.h (GH-96760)Dennis Sweeney2022-09-132-5/+6
* gh-90751: memoryview now supports half-float (#96738)Dong-hee Na2022-09-101-3/+33
* gh-96364: Fix text signatures of `__getitem__` for `list` and `dict` (GH-96365)Nikita Sobolev2022-09-092-2/+4
* gh-96352: Set AttributeError context in _PyObject_GenericGetAttrWithDict (#96...philg3142022-09-081-0/+2
* gh-96143: Clear instruction cache after mprotect call (#96476)Pablo Galindo Salgado2022-09-081-4/+23
* GH-90699: use statically allocated interned strings in typeobject's slotdefs ...Kumar Aditya2022-09-072-166/+106
* gh-95778: Correctly pre-check for int-to-str conversion (#96537)Mark Dickinson2022-09-041-4/+22
* GH-96458: Statically initialize utf8 representation of static strings (#96481)Kumar Aditya2022-09-031-33/+0
* gh-95778: CVE-2020-10735: Prevent DoS by very large int() (#96499)Gregory P. Smith2022-09-021-1/+44
* gh-93554: Conditional jump opcodes only jump forward (GH-96318)Irit Katriel2022-09-011-16/+3
* gh-96455: update example in exception_handling_notes.txt to the 3.11RC byteco...Irit Katriel2022-09-011-25/+28
* gh-96143: Add some comments and minor fixes missed in the original PR (#96433)Pablo Galindo Salgado2022-08-301-0/+11
* gh-96143: Allow Linux perf profiler to see Python calls (GH-96123)Pablo Galindo Salgado2022-08-302-0/+529