summaryrefslogtreecommitdiffstats
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
* Unicode 9.0.0Benjamin Peterson2016-09-151-716/+857
* Add _PyDict_CheckConsistency()Victor Stinner2016-09-142-6/+90
* Issue #28126: Replace Py_MEMCPY with memcpy(). Visual Studio can properly opt...Christian Heimes2016-09-135-51/+51
* Fix _PyDict_Pop() on pending keyVictor Stinner2016-09-131-1/+1
* Issue #28040: Cleanup find_empty_slot()Victor Stinner2016-09-131-6/+2
* Fix warning in _PyCFunction_FastCallKeywords()Victor Stinner2016-09-121-2/+1
* Issue #28077: find_empty_slot() only supports combined dictVictor Stinner2016-09-121-3/+7
* Document kwnames in _PyObject_FastCallKeywords() and _PyStack_AsDict()Victor Stinner2016-09-122-0/+8
* Revert change f860b7a775c5Victor Stinner2016-09-122-20/+8
* ssue #27213: Reintroduce checks in _PyStack_AsDict()Victor Stinner2016-09-122-8/+20
* Issue #28071: Add early-out for differencing from an empty set.Raymond Hettinger2016-09-121-0/+8
* Issue #28045: Merge from 3.5Berker Peksag2016-09-121-1/+1
|\
| * Issue #28045: Fix comment in range_contains_long()Berker Peksag2016-09-121-1/+1
* | Issue #27213: Fixed different issues with reworked CALL_FUNCTION* opcodes.Serhiy Storchaka2016-09-112-20/+8
* | Issue #27129: Replaced wordcode related magic constants with macros.Serhiy Storchaka2016-09-112-4/+4
* | Issue #23722: Initialize __class__ from type.__new__()Nick Coghlan2016-09-111-2/+11
* | Issue #25221: merge from 3.5.Mark Dickinson2016-09-101-1/+2
|\ \ | |/
| * Issue #25221: Fix corrupted result from PyLong_FromLong(0) when Python is com...Mark Dickinson2016-09-101-1/+2
| * Issue #27895: Spelling fixes (Contributed by Ville Skyttä).Martin Panter2016-09-075-5/+5
* | Fixed compiler warnings in compact dict implementation on 32-bit platforms.Serhiy Storchaka2016-09-101-11/+11
* | dictobject.c: explain why stringlib is usedVictor Stinner2016-09-101-1/+1
* | Issue #27810: Rerun Argument Clinic on all modulesVictor Stinner2016-09-102-32/+32
* | Add METH_FASTCALL calling conventionVictor Stinner2016-09-102-0/+80
* | Fix SystemError in compact dictVictor Stinner2016-09-101-19/+33
* | Issue #26331: Implement the parsing part of PEP 515.Brett Cannon2016-09-093-86/+205
* | Issue #25856: The __module__ attribute of extension classes and functionsSerhiy Storchaka2016-09-091-12/+15
* | Issue #27810: Add _PyCFunction_FastCallKeywords()Victor Stinner2016-09-092-2/+31
* | remove all usage of Py_LOCALBenjamin Peterson2016-09-094-15/+15
* | Add _PyObject_FastCallKeywords()Victor Stinner2016-09-091-0/+68
* | remove unconvincing use of Py_LOCALBenjamin Peterson2016-09-091-6/+6
* | Issue #27576: Fix call order in OrderedDict.__init__().Eric Snow2016-09-091-2/+15
* | Issue #28003: Implement PEP 525 -- Asynchronous Generators.Yury Selivanov2016-09-091-46/+986
* | Issue #28033: Fix typo in dictobject.cBerker Peksag2016-09-091-1/+1
* | Issue #24254: Drop cls.__definition_order__.Eric Snow2016-09-082-80/+1
* | Additional safe-guard against dereferencing NULL in reduce_newobjChristian Heimes2016-09-081-1/+7
* | Add NULL check for gen->gi_code in gen_send_ex()Christian Heimes2016-09-081-1/+1
* | do not worry about 64-bit dict sizes on 32-bit platformsBenjamin Peterson2016-09-082-4/+10
* | Add a new private version to the builtin dict typeVictor Stinner2016-09-081-0/+19
* | #27364: Deprecate invalid escape strings in str/byutes.R David Murray2016-09-082-1/+5
* | access dk_indices through a unionBenjamin Peterson2016-09-082-17/+18
* | Add documentation to the dict implementationVictor Stinner2016-09-082-3/+42
* | Reindeint DK_xxx macrosVictor Stinner2016-09-081-6/+11
* | dk_get_index/dk_set_index uses a type indices variableVictor Stinner2016-09-081-8/+16
* | use static inline instead of Py_LOCAL_INLINEBenjamin Peterson2016-09-081-16/+16
* | Split lookdict_unicode_nodummy() assertion to debugVictor Stinner2016-09-081-1/+2
* | fix spellingBenjamin Peterson2016-09-081-1/+1
* | Add assertions to dk_set_index()Victor Stinner2016-09-081-4/+14
* | Issue #27781: Change file system encoding on Windows to UTF-8 (PEP 529)Steve Dower2016-09-081-19/+27
* | link to canonical blogspotBenjamin Peterson2016-09-081-1/+1
* | use native inline instead of Py_LOCAL_INLINEBenjamin Peterson2016-09-081-3/+3