summaryrefslogtreecommitdiffstats
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
* bpo-24618: Add a check in the code constructor. (GH-8283) (GH-8311)Serhiy Storchaka2018-07-171-5/+24
* fix two typos in Objects/odictobject.c comments (GH-8040)Miss Islington (bot)2018-07-061-2/+2
* bpo-33786: Fix asynchronous generators to handle GeneratorExit in athrow() (G...Yury Selivanov2018-06-081-8/+7
* Fix typo in __mul__ and __rmul__ docstring (GH-6674)Miss Islington (bot)2018-05-091-2/+2
* bpo-33391: Fix refleak in set_symmetric_difference (GH-6670)Miss Islington (bot)2018-05-021-1/+3
* bpo-33199: Initialize ma_version_tag in PyDict_Copy (GH-6341)Miss Islington (bot)2018-04-031-0/+1
* Fix typo and edit for clarity in the docstrings of sys.float_info. (GH-2251)Miss Islington (bot)2018-03-261-3/+2
* bpo-32374: m_traverse may be called with m_state=NULL (GH-5140)Miss Islington (bot)2018-03-171-0/+21
* [3.7] bpo-17288: Prevent jumps from 'return' and 'exception' trace events. (G...Miss Islington (bot)2018-03-131-4/+36
* [3.6] bpo-33026: Fix jumping out of "with" block by setting f_lineno. (GH-602...Miss Islington (bot)2018-03-111-0/+7
* bpo-18533: Avoid RecursionError from repr() of recursive dictview (GH-4823)Miss Islington (bot)2018-02-261-4/+12
* bpo-31787: Prevent refleaks when calling __init__() more than once (GH-3995)INADA Naoki2018-02-132-6/+6
* bpo-32827: Fix usage of _PyUnicodeWriter_Prepare() in decoding errors handler...Miss Islington (bot)2018-02-131-7/+3
* [3.6] bpo-32746: Fix multiple typos (GH-5144) (GH-5522)Terry Jan Reedy2018-02-042-2/+2
* bpo-32137: The repr of deeply nested dict now raises a RecursionError (GH-457...Miss Islington (bot)2018-02-013-6/+5
* [3.6] bpo-32583: Fix possible crashing in builtin Unicode decoders (GH-5325) ...Xiang Zhang2018-01-311-2/+20
* [3.6] Revert "bpo-32690: Preserve order of locals() (GH-5379) (#5390)"Nick Coghlan2018-01-301-2/+2
* bpo-32690: Preserve order of locals() (GH-5379) (#5390)Miss Islington (bot)2018-01-281-2/+2
* bpo-32685: Improve suggestion for print statement (GH-5380)Miss Islington (bot)2018-01-281-14/+19
* Fix wrong assert in unicodeobject (GH-5340)Miss Islington (bot)2018-01-271-1/+1
* [3.6] bpo-32028: Fix suggestions for indented print statements (GH-5249)Miss Islington (bot)2018-01-201-5/+11
* Removed unnecesssary bit inversion which doesn't improve dispersion statistic...Miss Islington (bot)2018-01-181-1/+1
* bpo-26163: Frozenset hash improvement (GH-5194) (#5198)Miss Islington (bot)2018-01-161-0/+1
* [3.6] bpo-32555: Fix locale encodings (#5193)Victor Stinner2018-01-151-10/+26
* Fix outdated comment in typeobject.c (GH-5090)Miss Islington (bot)2018-01-041-1/+1
* bpo-31619: Fixed integer overflow in converting huge strings to int. (GH-3884...Miss Islington (bot)2017-12-031-3/+11
* [3.6] bpo-32176: Set CO_NOFREE in the code object constructor (GH-4684)Nick Coghlan2017-12-031-1/+9
* [3.6] bpo-30923, bpo-31279: Fix GCC warnings (#4620)Victor Stinner2017-11-291-1/+1
* bpo-16055: Fixes incorrect error text for int('1', base=1000) (GH-4376) (#4389)Miss Islington (bot)2017-11-141-1/+1
* bpo-31626: Fixed a bug in debug memory allocator. (GH-3844) (#4191)Miss Islington (bot)2017-10-311-11/+2
* [3.6] bpo-20047: Make bytearray methods partition() and rpartition() rejectin...Serhiy Storchaka2017-10-294-24/+47
* [3.6] bpo-30697: Fix PyErr_NormalizeException() when no memory (GH-2327). (#4...xdegaye2017-10-261-32/+0
* bpo-31825: Fixed OverflowError in the 'unicode-escape' codec (GH-4058) (#4059)Miss Islington (bot)2017-10-202-2/+2
* [3.6] bpo-31655: Validate keyword names in SimpleNamespace constructor. (GH-3...Miss Islington (bot)2017-10-071-1/+5
* [3.6] bpo-31619: Fixed a ValueError when convert a string with large number o...Miss Islington (bot)2017-10-031-4/+4
* [3.6] bpo-31492: Fix assertion failures in case of a module with a bad __name...Serhiy Storchaka2017-09-271-4/+1
* [3.6] bpo-31579: Fixed a possible leak in enumerate() with large indices. (GH...Serhiy Storchaka2017-09-261-3/+9
* [3.6] bpo-30923: Silence fall-through warnings included in -Wextra since gcc-...Victor Stinner2017-09-122-4/+5
* [3.6] bpo-31373: remove overly strict float range checks (GH-3486) (#3495)Benjamin Peterson2017-09-121-2/+2
* Backport docstring improvements to OrderedDict. (GH-3470)Henk-Jaap Wagenaar2017-09-111-4/+6
* [3.6] bpo-31393: Fix the use of PyUnicode_READY(). (GH-3451). (#3453)Serhiy Storchaka2017-09-083-7/+16
* [3.6] fixes bpo-31373: fix undefined floating-point demotions (GH-3396) (#3424)Miss Islington (bot)2017-09-071-4/+6
* [3.6] bpo-30662: fixed OrderedDict.__init__ docstring re PEP 468 (GH-2179) (G...Mariatta2017-09-061-2/+1
* bpo-31095: fix potential crash during GC (GH-3195)INADA Naoki2017-09-042-0/+9
* bpo-31161: only check for parens error for SyntaxError (#3083)Martijn Pieters2017-08-221-5/+10
* [3.6] bpo-31232: Backport custom print rshift message (GH-3155)Nick Coghlan2017-08-191-0/+15
* [3.6] bpo-30978: str.format_map() now passes key lookup exceptions through. (...Serhiy Storchaka2017-08-031-6/+10
* [3.6] bpo-22207: Add checks for possible integer overflows in unicodeobject.c...Serhiy Storchaka2017-07-111-6/+12
* [3.6] bpo-30597: Show expected input in custom 'print' error message. (GH-2531)Nick Coghlan2017-07-031-3/+45
* [3.6] bpo-13617: Reject embedded null characters in wchar* strings. (GH-2302)...Serhiy Storchaka2017-06-281-0/+14