summaryrefslogtreecommitdiffstats
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
* 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
* rearrange to make gcc happyBenjamin Peterson2016-09-081-1/+3
* Add Py_MEMBER_SIZE macroVictor Stinner2016-09-081-8/+12
* Implement compact dictVictor Stinner2016-09-084-548/+736
* more PY_LONG_LONG to long longBenjamin Peterson2016-09-081-2/+2
* Issue #15767: Add ModuleNotFoundError.Eric Snow2016-09-071-0/+9
* replace some Py_LOCAL_INLINE with the inline keywordBenjamin Peterson2016-09-071-9/+10
* Make PyCodeObject.co_extra even more private to force users through the prope...Brett Cannon2016-09-071-23/+31
* use c++ style commentsBenjamin Peterson2016-09-071-4/+4
* Change error return value to be more consistent with the rest of PythonBrett Cannon2016-09-071-5/+5
* use a the bool type for a boolean variableBenjamin Peterson2016-09-071-2/+4
* Add the co_extra field and accompanying APIs to code objects.Brett Cannon2016-09-071-0/+91
* require C99 boolBenjamin Peterson2016-09-071-20/+0
* replace PY_SIZE_MAX with SIZE_MAXBenjamin Peterson2016-09-073-4/+4
* merge 3.5 (#27968)Benjamin Peterson2016-09-071-12/+15
|\
| * supress coroutine warning when an exception is pending (#27968)Benjamin Peterson2016-09-071-12/+15
* | merge 3.5Benjamin Peterson2016-09-071-3/+3
|\ \ | |/
| * promote some shifts to unsigned, so as not to invoke undefined behaviorBenjamin Peterson2016-09-071-3/+3
* | Issue #27182: Add support for path-like objects to PyUnicode_FSDecoder().Brett Cannon2016-09-071-14/+37
* | merge 3.5Benjamin Peterson2016-09-071-6/+9
|\ \ | |/
| * make sure to not call memcpy with a NULL second argumentBenjamin Peterson2016-09-071-6/+9
* | Optimize unicode_escape and raw_unicode_escapeVictor Stinner2016-09-071-374/+314
* | _PyUnicodeWriter: assert that max character <= MAX_UNICODEVictor Stinner2016-09-061-0/+3
* | Issue #26027: Support path-like objects in PyUnicode-FSConverter().Brett Cannon2016-09-061-12/+13
* | replace Py_(u)intptr_t with the c99 standard typesBenjamin Peterson2016-09-063-4/+4
* | replace Python aliases for standard integer types with the standard integer t...Benjamin Peterson2016-09-061-4/+4
* | Issue #27078: Added BUILD_STRING opcode. Optimized f-strings evaluation.Serhiy Storchaka2016-09-062-19/+43
* | remove some silly defined() testsBenjamin Peterson2016-09-061-2/+2
* | replace PY_LONG_LONG with long longBenjamin Peterson2016-09-064-60/+60
* | Avoid calling functions with an empty string as format stringVictor Stinner2016-09-062-2/+2
* | Avoid inefficient way to call functions without argumentVictor Stinner2016-09-061-4/+4
* | require a long long data type (closes #27961)Benjamin Peterson2016-09-063-38/+0
* | Issue #27938: Add a fast-path for us-ascii encodingVictor Stinner2016-09-051-56/+110
* | Issue #24254: Preserve class attribute definition order.Eric Snow2016-09-052-1/+80
* | remove memory indirections in dict_traverse (closes #27956)Benjamin Peterson2016-09-051-9/+11
* | Issue #27830: Remove unused _PyStack_AsDict()Victor Stinner2016-09-051-34/+0
* | merge 3.5 (#27812)Benjamin Peterson2016-09-051-1/+4
|\ \ | |/
| * clear out f_gen during generator finalization (closes #27812)Benjamin Peterson2016-09-051-1/+4
* | merge 3.5 (closes #27811)Benjamin Peterson2016-09-051-12/+13
|\ \ | |/
| * do not allow _PyGen_Finalize to fail (closes #27811)Benjamin Peterson2016-09-051-12/+13
* | Issue #11734: Add support for IEEE 754 half-precision floats to the struct mo...Mark Dickinson2016-09-031-1/+183