summaryrefslogtreecommitdiff
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
* 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-052-2/+2
* Avoid inefficient way to call functions without argumentVictor Stinner2016-09-051-4/+4
* require a long long data type (closes #27961)Benjamin Peterson2016-09-053-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-0546-4579/+5157
|\
| * merge 3.5 (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
| * | PEP 7 style for if/else in CVictor Stinner2016-09-022-17/+34
| * | Issue #27895: Spelling fixes (Contributed by Ville Skytt?).Raymond Hettinger2016-08-308-17/+17
| * | Issue #27870: A left shift of zero by a large integer no longer attempts to a...Mark Dickinson2016-08-291-0/+5
| * | Issue #25402: in int-to-decimal-string conversion, reduce intermediate storag...Mark Dickinson2016-08-291-8/+11
| * | Issue #27214: Fix potential bug and remove useless optimization in long_inver...Mark Dickinson2016-08-291-2/+4
| * | Issue #27506: Support bytes/bytearray.translate() delete as keyword argumentMartin Panter2016-08-274-60/+37
| * | MergeRaymond Hettinger2016-08-2546-4506/+4898
| |\ \
| | * | Issue #27830: Revert, remove _PyFunction_FastCallKeywords()Victor Stinner2016-08-251-45/+0
| | * | method_call() and slot_tp_new() now uses fast callVictor Stinner2016-08-253-40/+51
| | * | Issue #27830: Fix _PyObject_FastCallKeywords()Victor Stinner2016-08-251-1/+1
| | * | _PyObject_FastCallDict(): avoid _Py_CheckFunctionResult()Victor Stinner2016-08-251-2/+2
| | * | Add _PyObject_FastCallKeywords()Victor Stinner2016-08-251-0/+79
| | * | Use Py_ssize_t type for number of argumentsVictor Stinner2016-08-252-3/+8
| | * | PyObject_CallMethodObjArgs() now uses fast callVictor Stinner2016-08-241-32/+71
| | * | Backed out changeset 0e4f26083bbb (PyObject_CallMethodObjArgs)Victor Stinner2016-08-241-71/+32
| | * | PyObject_CallMethodObjArgs() now uses fast callVictor Stinner2016-08-241-32/+71
| | * | Issue #27809: Use _PyObject_FastCallDict()Victor Stinner2016-08-221-15/+13
| | * | Issue #27809: Use _PyObject_FastCallDict()Victor Stinner2016-08-221-24/+10
| | * | _PyFunction_FastCallDict() supports keyword argsVictor Stinner2016-08-222-9/+8
| | * | Rename _PyObject_FastCall() to _PyObject_FastCallDict()Victor Stinner2016-08-224-15/+15
| | * | Issue #27792: force int return type for modulo operations involving bools.Mark Dickinson2016-08-221-2/+5
| | * | Issue #26984: int() now always returns an instance of exact int.Serhiy Storchaka2016-08-211-12/+23
| | * | Untabify Objects/longobject.c.Mark Dickinson2016-08-211-2/+2
| | * | Issue #25604: Fix minor bug in integer true division, which couldMark Dickinson2016-08-211-2/+2
| | * | Issue #27662: don't use PY_SIZE_MAX for overflow checking in List_New. Patch ...Mark Dickinson2016-08-211-11/+1
| | * | Merge #27782 fix from 3.5Nick Coghlan2016-08-211-29/+35
| | |\ \
| | * | | Issue #27692: Removed unnecessary NULL checks in exceptions.c.Serhiy Storchaka2016-08-201-4/+3
| | * | | Issue #27366: Fix init_subclass()Victor Stinner2016-08-201-0/+5
| | * | | PyFile_WriteObject() now uses fast callVictor Stinner2016-08-201-9/+2
| | * | | calliter_iternext() now uses fast callVictor Stinner2016-08-191-19/+21
| | * | | slot_tp_iter() now uses fast callVictor Stinner2016-08-191-6/+3
| | * | | slot_nb_bool() now uses fast callVictor Stinner2016-08-191-8/+2
| | * | | Issue #27128: Cleanup slot_nb_bool()Victor Stinner2016-08-191-25/+41
| | * | | Issue #27128: slot_sq_item() uses fast callVictor Stinner2016-08-191-10/+3
| | * | | Issue #27128: Cleanup slot_sq_item()Victor Stinner2016-08-191-25/+33