summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_descr.py
Commit message (Expand)AuthorAgeFilesLines
* gh-71339: Add additional assertion methods for unittest (GH-128707)Serhiy Storchaka2025-01-141-8/+0
* gh-127146: Emscripten: Skip segfaults in test suite (#127151)Hood Chatham2024-12-051-0/+3
* gh-126146: Remove ``__cmp__`` method from tests (#126147)Kirill Podoprigora2024-10-291-2/+0
* gh-125900: Clean-up logic around immortalization in free-threading (#125901)Sam Gross2024-10-241-1/+0
* gh-125017: Fix crash on premature access to classmethod/staticmethod annotati...Jelle Zijlstra2024-10-171-0/+14
* gh-123446: Fix empty function names in `TypeError`s in `typeobject` (#123470)sobolevn2024-08-301-0/+14
* gh-117657: Fix `__slots__` thread safety in free-threaded build (#119368)Daniele Parmeggiani2024-06-171-1/+1
* gh-119180: Lazily wrap annotations on classmethod and staticmethod (#119864)Jelle Zijlstra2024-05-311-2/+36
* gh-118846: Fix free-threading test failures when run sequentially (#118864)Sam Gross2024-05-101-0/+1
* gh-118465: Add __firstlineno__ attribute to class (GH-118475)Serhiy Storchaka2024-05-061-3/+5
* gh-117797: Improve `test_descr.test_not_implemented` (#117798)Nikita Sobolev2024-04-161-8/+17
* gh-117764: Add docstrings and signatures for the types of None, Ellipsis and ...Serhiy Storchaka2024-04-121-2/+2
* gh-115775: Compiler adds __static_attributes__ field to classes (#115913)Irit Katriel2024-03-261-3/+5
* gh-115249: Fix `test_descr` with `-OO` mode (#115250)Nikita Sobolev2024-02-111-1/+5
* gh-55664: Add warning when creating a type using a namespace dictionary with ...Furkan Onder2024-01-281-1/+16
* gh-113157 gh-89519: Fix method descriptors (gh-113233)Raymond Hettinger2023-12-211-0/+15
* Fix typos in docs and comments (#109619)Heinz-Alexander Fuetterer2023-09-201-1/+1
* GH-105848: Replace KW_NAMES + CALL with LOAD_CONST + CALL_KW (GH-109300)Brandt Bucher2023-09-131-5/+5
* gh-108416: Mark slow test methods with @requires_resource('cpu') (GH-108421)Serhiy Storchaka2023-09-021-0/+1
* gh-107910: Remove not needing newline in error message (GH-107928)Joon Hwan 김준환2023-08-141-2/+2
* gh-102213: Optimize the performance of `__getattr__` (GH-103761)sunmy20192023-05-011-1/+14
* gh-103272: regression test for getattr exception in property (#103336)sunmy20192023-04-071-0/+13
* gh-99430: Remove duplicated tests for old-styled classes (#99432)Nikita Sobolev2022-11-131-5/+1
* gh-98783: Fix crashes when `str` subclasses are used in `_PyUnicode_Equal` (#...Nikita Sobolev2022-10-301-0/+19
* Fix links to old SF bugs (#95648)Serhiy Storchaka2022-08-041-1/+1
* gh-93939: Build C extensions without setup.py (GH-94474)Christian Heimes2022-07-141-0/+9
* gh-84623: Remove unused imports in tests (#93772)Victor Stinner2022-06-131-1/+0
* bpo-44712: Replace "type(literal)" with corresponding builtin types (GH-27294)Serhiy Storchaka2022-05-081-3/+3
* gh-92112: Fix crash triggered by an evil custom `mro()` (#92113)Alexey Izbyshev2022-05-061-0/+17
* gh-92063: Enforce types in specialized PRECALL opcodes (GH-92068)Dennis Sweeney2022-04-301-0/+27
* gh-91625: Don't ignore extended args of adaptive opcodes (GH-91626)Dennis Sweeney2022-04-171-2/+16
* bpo-46675: Allow object value arrays and split key dictionaries larger than 1...Mark Shannon2022-02-081-1/+1
* bpo-44977: Deprecate delegation of int to __trunc__ (GH-31031)Zackery Spytz2022-02-031-1/+0
* bpo-46417: remove_subclass() clears tp_subclasses (GH-30793)Victor Stinner2022-01-221-0/+17
* bpo-46299: Improve test_descr (GH-30475)Dong-hee Na2022-01-081-26/+10
* bpo-46299: improve `test_descr.py` with stricter error handling (GH-30471)Nikita Sobolev2022-01-081-4/+4
* bpo-45292: [PEP 654] add the ExceptionGroup and BaseExceptionGroup classes (G...Irit Katriel2021-10-221-1/+5
* bpo-45340: Don't create object dictionaries unless actually needed (GH-28802)Mark Shannon2021-10-131-4/+6
* Fix typos in the Lib directory (GH-28775)Christian Clauss2021-10-061-1/+1
* bpo-45229: Remove test_main in many tests (GH-28405)Serhiy Storchaka2021-09-191-9/+5
* bpo-44655: Include the name of the type in unset __slots__ attribute errors (...Pablo Galindo Salgado2021-07-161-0/+6
* Fix typos in multiple files (GH-26689)Binbin2021-06-131-1/+1
* bpo-43908: check_set_special_type_attr() checks Py_TPFLAGS_IMMUTABLETYPE (GH-...Erlend Egeberg Aasland2021-04-301-2/+4
* bpo-43682: @staticmethod inherits attributes (GH-25268)Victor Stinner2021-04-091-5/+13
* bpo-38302: __pow__/__rpow__ now called when __ipow__ returns NotImplemented (...Alex2021-02-261-0/+42
* bpo-34805: Guarantee that __subclasses__() is in definition order. (GH-23844)Raymond Hettinger2020-12-191-0/+10
* bpo-40275: Use new test.support helper submodules in tests (GH-21772)Hai Shi2020-08-071-3/+3
* bpo-41295: Reimplement the Carlo Verre "hackcheck" (GH-21528)scoder2020-07-181-0/+36
* bpo-41055: Remove outdated tests for the tp_print slot. (GH-21006)Serhiy Storchaka2020-06-211-7/+0
* bpo-35712: Make using NotImplemented in a boolean context issue a deprecation...MojoVampire2020-03-031-3/+3