summaryrefslogtreecommitdiffstats
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
* Issue #25971: Optimized creating Fractions from floats by 2 times and fromSerhiy Storchaka2015-12-291-6/+6
* Issue #20440: Cleaning up the code by using Py_SETREF and Py_CLEAR.Serhiy Storchaka2015-12-273-23/+5
* Issue #20440: More use of Py_SETREF.Serhiy Storchaka2015-12-272-10/+11
|\
| * Issue #20440: More use of Py_SETREF.Serhiy Storchaka2015-12-272-10/+11
* | Issue #20440: Applied yet one patch for using Py_SETREF.Serhiy Storchaka2015-12-272-37/+23
|\ \ | |/
| * Issue #20440: Applied yet one patch for using Py_SETREF.Serhiy Storchaka2015-12-272-37/+23
* | Issue #22995: Instances of extension types with a state that aren'tSerhiy Storchaka2015-12-251-15/+36
|\ \ | |/
| * Issue #22995: Instances of extension types with a state that aren'tSerhiy Storchaka2015-12-251-15/+36
* | Issue #25923: Added more const qualifiers to signatures of static and private...Serhiy Storchaka2015-12-259-21/+21
* | Issue #25923: Added the const qualifier to static constant arrays.Serhiy Storchaka2015-12-254-11/+11
* | Issue #20440: Massive replacing unsafe attribute setting code with specialSerhiy Storchaka2015-12-249-36/+18
|\ \ | |/
| * Issue #20440: Massive replacing unsafe attribute setting code with specialSerhiy Storchaka2015-12-249-36/+18
* | Issue #25914: Fixed and simplified OrderedDict.__sizeof__.Serhiy Storchaka2015-12-222-24/+10
|\ \ | |/
| * Issue #25914: Fixed and simplified OrderedDict.__sizeof__.Serhiy Storchaka2015-12-222-24/+10
* | Issue #25766: Special method __bytes__() now works in str subclasses.Serhiy Storchaka2015-12-201-6/+12
|\ \ | |/
| * Issue #25766: Special method __bytes__() now works in str subclasses.Serhiy Storchaka2015-12-201-6/+12
* | Issue #25421: __sizeof__ methods of builtin types now use dynamic basic size.Serhiy Storchaka2015-12-196-7/+5
|\ \ | |/
| * Issue #25421: __sizeof__ methods of builtin types now use dynamic basic size.Serhiy Storchaka2015-12-196-7/+5
* | Issue #25899: Converted Objects/listsort.txt to UTF-8.Serhiy Storchaka2015-12-181-1/+1
* | Issues #25890, #25891, #25892: Removed unused variables in Windows code.Serhiy Storchaka2015-12-181-1/+0
* | Minor tweek. Counting down rather than up reduces register pressure.Raymond Hettinger2015-12-151-1/+1
* | Undo inadvertent line swapRaymond Hettinger2015-12-141-1/+1
* | Hoist constant expressions (so->table and so->mask) out of the inner-loop.Raymond Hettinger2015-12-141-12/+12
* | Issue #25709: Fixed problem with in-place string concatenation and utf-8 cache.Serhiy Storchaka2015-12-021-0/+5
|\ \ | |/
| * Issue #25709: Fixed problem with in-place string concatenation and utf-8 cache.Serhiy Storchaka2015-12-021-0/+5
| |\
| | * Issue #25709: Fixed problem with in-place string concatenation and utf-8 cache.Serhiy Storchaka2015-12-021-0/+5
* | | Issue #24097: Fixed crash in object.__reduce__() if slot name is freed insideSerhiy Storchaka2015-11-251-0/+3
|\ \ \ | |/ /
| * | Issue #24097: Fixed crash in object.__reduce__() if slot name is freed insideSerhiy Storchaka2015-11-251-0/+3
| |\ \ | | |/
| | * Issue #24097: Fixed crash in object.__reduce__() if slot name is freed insideSerhiy Storchaka2015-11-251-0/+3
* | | Issue #24731: Fixed crash on converting objects with special methodsSerhiy Storchaka2015-11-253-6/+6
|\ \ \ | |/ /
| * | Issue #24731: Fixed crash on converting objects with special methodsSerhiy Storchaka2015-11-253-6/+6
| |\ \ | | |/
| | * Issue #24731: Fixed crash on converting objects with special methodsSerhiy Storchaka2015-11-253-6/+6
* | | Issue #25557: Refactor _PyDict_LoadGlobal()Victor Stinner2015-11-201-26/+29
* | | Add assertion to verify the pre-condition in the comments.Raymond Hettinger2015-11-181-0/+1
* | | Issue #25629: Move set fill/used updates out of inner loopRaymond Hettinger2015-11-171-7/+8
* | | merge 3.5 (#25630)Benjamin Peterson2015-11-161-0/+1
|\ \ \ | |/ /
| * | make the PyUnicode_FSConverter cleanup set the decrefed argument to NULL (clo...Benjamin Peterson2015-11-161-0/+1
* | | Issue #24821: Refactor STRINGLIB(fastsearch_memchr_1char) and split it onSerhiy Storchaka2015-11-144-100/+121
* | | Issue #25462: The hash of the key now is calculated only once in mostSerhiy Storchaka2015-11-131-35/+83
|\ \ \ | |/ /
| * | Issue #25462: The hash of the key now is calculated only once in mostSerhiy Storchaka2015-11-131-35/+83
* | | Issue #22995: Default implementation of __reduce__ and __reduce_ex__ nowSerhiy Storchaka2015-11-121-0/+6
|\ \ \ | |/ /
| * | Issue #22995: Default implementation of __reduce__ and __reduce_ex__ nowSerhiy Storchaka2015-11-121-0/+6
| |\ \ | | |/
| | * Issue #22995: Default implementation of __reduce__ and __reduce_ex__ nowSerhiy Storchaka2015-11-121-0/+12
* | | Merge 3.5.Stefan Krah2015-11-101-1/+1
|\ \ \ | |/ /
| * | Fix Visual Studio warning.Stefan Krah2015-11-101-1/+1
* | | Merge 3.5.Stefan Krah2015-11-101-1/+16
|\ \ \ | |/ /
| * | Iaaue #25598: Fix memory_hex from #9951 for non-contiguous buffers.Stefan Krah2015-11-101-1/+16
* | | Issue #24802: Merge null termination fixes from 3.5Martin Panter2015-11-073-9/+35
|\ \ \ | |/ /
| * | Issue #24802: Merge null termination fixes from 3.4 into 3.5Martin Panter2015-11-073-9/+35
| |\ \ | | |/
| | * Issue #24802: Copy bytes-like objects to null-terminated buffers if necessaryMartin Panter2015-11-073-9/+35