summaryrefslogtreecommitdiff
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
* Merge spelling fixes from 3.5Martin Panter2016-06-201-1/+1
|\
| * Fix spelling errors in code commentsMartin Panter2016-06-201-2/+2
* | Issue #26754: PyUnicode_FSDecoder() accepted a filename argument encoded asSerhiy Storchaka2016-06-181-1/+7
|\ \ | |/
| * Issue #26754: PyUnicode_FSDecoder() accepted a filename argument encoded asSerhiy Storchaka2016-06-181-1/+7
* | Issue #27333: Simplified testing step on 0.Serhiy Storchaka2016-06-181-11/+4
* | Issue #27342: Replaced some Py_XDECREFs with Py_DECREFs.Serhiy Storchaka2016-06-181-5/+5
* | Comment fixes extracted from patch by Demur Rumed.Serhiy Storchaka2016-06-121-1/+1
* | Merge 3.5 (issue #27243)Yury Selivanov2016-06-0939-4073/+4039
|\ \ | |/ |/|
| * Issue #26305: Argument Clinic now uses braces in C code as required by PEP 7.Serhiy Storchaka2016-06-094-47/+90
| * odict: Remove useless ";" after function definitionVictor Stinner2016-06-081-9/+9
| * Issue #27225: Fixed a reference leak in type_new when setting __new__ fails.Serhiy Storchaka2016-06-051-1/+3
| |\
| * | Issue #25548: Showing memory address of class objects in replKushal Das2016-06-041-3/+3
| * | Issue #20041: Fixed TypeError when frame.f_trace is set to None.Serhiy Storchaka2016-06-0436-4015/+3938
| |\ \
| | * | Issue #27073: Removed redundant checks in long_add and long_sub.Serhiy Storchaka2016-06-041-2/+10
| | * | Issue #26983: float() now always return an instance of exact float.Serhiy Storchaka2016-06-032-22/+54
| | * | Issue #27171: Merge typo fixes from 3.5Martin Panter2016-06-0236-3996/+3875
| | |\ \
| | | * \ Issue #27125: Merge typo fixes from 3.5Martin Panter2016-05-3036-3996/+3875
| | | |\ \
| | | | * \ Issue #27125: Merge typo fixes from 3.5Martin Panter2016-05-2936-3996/+3875
| | | | |\ \
| | | | | * \ merge 3.5Benjamin Peterson2016-05-2836-3996/+3875
| | | | | |\ \
| | | | | | * | Issue #27118: Clean up Py_XINCREF/Py_XDECREF in typeobject.c.Serhiy Storchaka2016-05-251-5/+4
| | | | | | * | Issue #26647: Python interpreter now uses 16-bit wordcode instead of bytecode.Serhiy Storchaka2016-05-242-12/+4
| | | | | | * | Issue #27039: Fixed bytearray.remove() for values greater than 127.Serhiy Storchaka2016-05-161-5/+2
| | | | | | |\ \
| | | | | | * | | Issue #26765: Ensure that bytes- and unicode-specific stringlib files are usedSerhiy Storchaka2016-05-166-12/+15
| | | | | | * | | merge 3.5Benjamin Peterson2016-05-121-3/+3
| | | | | | |\ \ \
| | | | | | * \ \ \ Issue #23640: int.from_bytes() no longer bypasses constructors for subclasses.Serhiy Storchaka2016-05-121-21/+3
| | | | | | |\ \ \ \
| | | | | | * | | | | Issue #27005: Fixed the call of PyObject_CallFunctionObjArgs().Serhiy Storchaka2016-05-121-1/+1
| | | | | | * | | | | Issue #27005: Optimized the float.fromhex() class method for exact float.Serhiy Storchaka2016-05-121-6/+5
| | | | | | * | | | | Issue #17765: weakref.ref() no longer silently ignores keyword arguments.Serhiy Storchaka2016-05-0732-3957/+3843
| | | | | | |\ \ \ \ \
| | | | | | | * | | | | Issue #26765: Moved common code for the replace() method of bytes and bytearraySerhiy Storchaka2016-05-053-1062/+527
| | | | | | | * | | | | Issue #26765: Moved common code and docstrings for bytes and bytearray methodsSerhiy Storchaka2016-05-046-777/+498
| | | | | | | * | | | | Issue #26811: gc.get_objects() no longer contains a broken tuple with NULLSerhiy Storchaka2016-05-0431-2177/+2877
| | | | | | | |\ \ \ \ \
| | | | | | | | * | | | | Got rid of redundand "self" parameter declarations.Serhiy Storchaka2016-05-023-70/+45
| | | | | | | | * | | | | Fix typos. Reported by andportnoy on GitHub.Berker Peksag2016-04-291-1/+1
| | | | | | | | * | | | | Removed unused initialization and the uninteresting comment.Raymond Hettinger2016-04-291-2/+1
| | | | | | | | * | | | | Issue #26880: Removed redundant checks in set.__init__.Serhiy Storchaka2016-04-291-3/+1
| | | | | | | | * | | | | Issue #25349, #26249: Fix memleak in formatfloat()Victor Stinner2016-04-261-0/+1
| | | | | | | | * | | | | Issue #26249: Try test_capi on WindowsVictor Stinner2016-04-221-6/+7
| | | | | | | | * | | | | PyMem_Malloc() now uses the fast pymalloc allocatorVictor Stinner2016-04-221-3/+3
| | | | | | | | * | | | | Merge doc and comment fixes from 3.5Martin Panter2016-04-1930-2101/+2827
| | | | | | | | |\ \ \ \ \
| | | | | | | | | * | | | | Don't define _PyMem_PymallocEnabled() if pymalloc is disabledVictor Stinner2016-04-191-1/+1
| | | | | | | | | * | | | | Issue #26745: Removed redundant code in _PyObject_GenericSetAttrWithDict.Serhiy Storchaka2016-04-171-30/+21
| | | | | | | | | * | | | | Issue #26778: Fixed "a/an/and" typos in code comment, documentation and errorSerhiy Storchaka2016-04-1730-2071/+2806
| | | | | | | | | |\ \ \ \ \
| | | | | | | | | | * \ \ \ \ merge 3.5Benjamin Peterson2016-04-161-1/+1
| | | | | | | | | | |\ \ \ \ \
| | | | | | | | | | * \ \ \ \ \ merge 3.5 (#26659)Benjamin Peterson2016-04-1630-2071/+2806
| | | | | | | | | | |\ \ \ \ \ \
| | | | | | | | | | | * | | | | | Issue #26766: Remove redundant bytearray_format() from bytearrayobject.cBerker Peksag2016-04-161-14/+1
| | | | | | | | | | | * | | | | | Issue #26766: Fix _PyBytesWriter_Finish()Victor Stinner2016-04-151-1/+6
| | | | | | | | | | | * | | | | | Issue #26764: Fixed SystemError in bytes.__rmod__.Serhiy Storchaka2016-04-151-6/+4
| | | | | | | | | | | * | | | | | Issue #15984: Merge PyUnicode doc from 3.5Martin Panter2016-04-152-2/+2
| | | | | | | | | | | |\ \ \ \ \ \
| | | | | | | | | | | * | | | | | | Issue #26057: Got rid of nonneeded use of PyUnicode_FromObject().Serhiy Storchaka2016-04-132-410/+165
| | | | | | | | | | | * | | | | | | Issue #26718: super.__init__ no longer leaks memory if called multiple times.Serhiy Storchaka2016-04-131-3/+3
| | | | | | | | | | | |\ \ \ \ \ \ \