summaryrefslogtreecommitdiff
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
* [3.8] closes bpo-39630: Update pointers to string literals to be const char *...Benjamin Peterson2020-02-131-2/+2
* [3.8] bpo-39606: allow closing async generators that are already closed (GH-1...Miss Islington (bot)2020-02-131-4/+11
* bpo-39605: Remove a cast that causes a warning. (GH-18473)Miss Islington (bot)2020-02-111-1/+1
* closes bpo-39605: Fix some casts to not cast away const. (GH-18453)Miss Islington (bot)2020-02-116-31/+31
* Fixes in sorting descriptions (GH-18317)Miss Islington (bot)2020-02-031-8/+8
* bpo-39425: Fix list.count performance regression (GH-18119) (GH-18120)Miss Islington (bot)2020-01-221-0/+4
* closes bpo-39415: Remove unused codes from longobject.c complexobject.c float...Miss Islington (bot)2020-01-213-68/+0
* bpo-39386: Prevent double awaiting of async iterator (GH-18081)Miss Islington (bot)2020-01-201-4/+12
* bpo-38400 Don't check for NULL linked list pointers in _PyObject_IsFreed (GH-...Miss Islington (bot)2020-01-191-1/+4
* Document CodeType.replace (GH-17776)Miss Islington (bot)2019-12-312-4/+4
* [3.8] bpo-38588: Fix possible crashes in dict and list when calling P… (GH-...Dong-hee Na2019-12-312-0/+12
* bpo-38610: Fix possible crashes in several list methods (GH-17022)Miss Islington (bot)2019-12-301-3/+12
* closes bpo-30364: Replace deprecated no_address_safety_analysis attribute. (G...Miss Islington (bot)2019-12-261-7/+7
* bpo-38922: Raise code.__new__ audit event when code object replace() is calle...Miss Islington (bot)2019-11-261-0/+7
* bpo-35409: Ignore GeneratorExit in async_gen_athrow_throw (GH-14755)Miss Islington (bot)2019-11-191-0/+11
* bpo-38555: Fix an undefined behavior. (GH-16883)Miss Skeleton (bot)2019-10-231-8/+7
* bpo-38525: Fix a segmentation fault when using reverse iterators of empty dic...Miss Islington (bot)2019-10-191-2/+7
* [3.8] bpo-36389: Backport debug enhancements from master (GH-16796)Victor Stinner2019-10-156-158/+149
* Fix strict-aliasing rules errors on gcc 4.8.5. (GH-16714)Miss Islington (bot)2019-10-131-1/+1
* bpo-38409: Fix grammar in str.strip() docstring (GH-16682) (GH-16684)Miss Islington (bot)2019-10-092-4/+4
* [3.8] bpo-38395: Fix ownership in weakref.proxy methods (GH-16632) (GH-16662)Pablo Galindo2019-10-081-31/+88
* bpo-38383: Fix possible integer overflow in startswith() of bytes and bytearr...Miss Islington (bot)2019-10-061-1/+1
* Restore tp_clear for function object. (#16502)Neil Schemenauer2019-10-011-13/+21
* bpo-30773: Fix ag_running; prohibit running athrow/asend/aclose in parallel (...Miss Islington (bot)2019-09-291-2/+34
* bpo-38115: Deal with invalid bytecode offsets in lnotab (GH-16079) (GH-16464)Gregory P. Smith2019-09-281-1/+3
* bpo-38005: Remove support of string argument in InterpreterID(). (GH-16227)Miss Islington (bot)2019-09-251-50/+31
* bpo-38236: Dump path config at first import error (GH-16300) (GH-16332)Victor Stinner2019-09-231-8/+11
* [3.8] bpo-38070: Py_FatalError() logs runtime state (GH-16258)Victor Stinner2019-09-181-6/+7
* bpo-38013: make async_generator_athrow object tolerant to throwing exceptions...Miss Islington (bot)2019-09-171-5/+0
* [3.8] bpo-38005: Fixed comparing and creating of InterpreterID and ChannelID....Serhiy Storchaka2019-09-141-51/+49
* [3.8] bpo-37206: Unrepresentable default values no longer represented as None...Serhiy Storchaka2019-09-149-23/+23
* bpo-38096: Complete the "structseq" and "named tuple" cleanup (GH-16010) (GH...Miss Islington (bot)2019-09-121-2/+8
* [3.8] bpo-37879: Suppress subtype_dealloc decref when base type is a C heap t...Petr Viktorin2019-09-121-10/+10
* bpo-38096: Clean up the "struct sequence" / "named tuple" docs (GH-15895) (GH...Paul Ganssle2019-09-112-2/+2
* Doc: Fix typo in fastsearch comments (GH-14608) (GH-15933)Miss Islington (bot)2019-09-111-2/+2
* Remove unneeded assignment in PyBytes_Concat() (GH-15274)Miss Islington (bot)2019-09-101-1/+0
* bpo-37619: update_one_slot() should not ignore wrapper descriptors for wrong ...Miss Islington (bot)2019-09-101-6/+13
* Fix typo in dict object comment (GH-15814)Miss Islington (bot)2019-09-101-1/+1
* Revert "bpo-33418: Add tp_clear for function object (GH-8058)" (GH-15826)Victor Stinner2019-09-101-21/+13
* [3.8] bpo-37994: Fix silencing all errors if an attribute lookup fails. (GH-1...Serhiy Storchaka2019-09-016-90/+95
* Fix typos mostly in comments, docs and test names (GH-15209)Miss Islington (bot)2019-08-302-2/+2
* [3.8] bpo-37034: Display argument name on errors with keyword arguments with ...Serhiy Storchaka2019-08-2910-56/+56
* Fix unused variable and signed/unsigned warnings (GH-15537) (GH-15551)Miss Islington (bot)2019-08-271-0/+6
* [3.8] bpo-37757: Disallow PEP 572 cases that expose implementation details (G...Nick Coghlan2019-08-261-9/+0
* [3.8] bpo-37830: Fix compilation of break and continue in finally. (GH-15320)...Serhiy Storchaka2019-08-241-7/+16
* bpo-36311: Fixes decoding multibyte characters around chunk boundaries and im...Miss Islington (bot)2019-08-211-6/+10
* bpo-37732: Fix GCC warning in _PyObject_Malloc() (GH-15333) (GH-15342)Victor Stinner2019-08-201-17/+15
* bpo-37681: no_sanitize_thread support from GCC 5.1 (GH-15096)Miss Islington (bot)2019-08-141-2/+2
* [3.8] bpo-36974: separate vectorcall functions for each calling convention (G...Jeroen Demeyer2019-07-233-78/+354
* bpo-37233: optimize method_vectorcall in case of totalargs == 0 (GH-14550)Miss Islington (bot)2019-07-031-6/+10