summaryrefslogtreecommitdiffstats
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
* Issue #18783: Removed existing mentions of Python long type in docstrings,Serhiy Storchaka2013-08-275-61/+60
|\
| * Issue #18783: Removed existing mentions of Python long type in docstrings,Serhiy Storchaka2013-08-275-61/+60
* | Restore changeset 5bd9db528aed (issue #18408)Victor Stinner2013-08-262-0/+22
* | Issue #18408: _PyObject_Dump() now saves/restores the current exceptionVictor Stinner2013-08-261-0/+6
* | Various clarifications based on feedback & questions over the years.Tim Peters2013-08-241-19/+96
|\ \ | |/
| * Various clarifications based on feedback & questions over the years.Tim Peters2013-08-241-19/+96
* | Issue #18772: fix the gdb plugin after the set implementation changesAntoine Pitrou2013-08-242-9/+3
* | Back out 5bd9db528aed (issue #18408). It caused unsolved buildbot failures.Antoine Pitrou2013-08-232-23/+0
* | Add the same dummy type that is used in dictionaries.Raymond Hettinger2013-08-231-15/+49
* | Add line explaining the "%sort" test.Tim Peters2013-08-221-0/+1
|\ \ | |/
| * Add line explaining the "%sort" test.Tim Peters2013-08-221-0/+1
* | Issue 18797: Remove unneeded refcount adjustments for dummy objects.Raymond Hettinger2013-08-221-16/+6
* | Hoist the global dummy lookup out of the inner loop for set_merge().Raymond Hettinger2013-08-211-1/+3
* | Remove a redundant hash table probe (this was artifact from an earlier draft ...Raymond Hettinger2013-08-211-11/+0
* | Issue 18772: Restore set dummy object back to unicode and restore the identi...Raymond Hettinger2013-08-211-4/+4
* | Issue18771: Reduce the cost of hash collisions for set objects.Raymond Hettinger2013-08-191-20/+86
* | Remove the else-clause because the conditions are no longer mutually exclusive.Raymond Hettinger2013-08-171-1/+1
* | Use a known unique object for the dummy entry.Raymond Hettinger2013-08-171-25/+20
* | Issue #18701: Remove support of old CPython versions (<3.0) from C code.Serhiy Storchaka2013-08-161-5/+0
* | Hoist the global "dummy" lookup outside of the reinsertion loop.Raymond Hettinger2013-08-151-1/+3
* | mergeRaymond Hettinger2013-08-141-9/+0
|\ \ | |/
| * Issue 18719: Remove a false optimizationRaymond Hettinger2013-08-141-9/+0
| * Silence compiler warning for an unused declarationRaymond Hettinger2013-08-041-1/+0
* | Issue #18722: Remove uses of the "register" keyword in C code.Antoine Pitrou2013-08-1320-196/+196
* | Replace outdated optimization with clearer code that compiles better.Raymond Hettinger2013-08-061-3/+3
* | Issue #17934: Add a clear() method to frame objects, to help clean up expensi...Antoine Pitrou2013-08-052-5/+31
* | mergeRaymond Hettinger2013-08-041-1/+1
|\ \ | |/
| * Silence compiler warning about an uninitialized variableRaymond Hettinger2013-08-041-1/+1
* | Issue #16741: Fix an error reporting in int().Serhiy Storchaka2013-08-032-52/+64
|\ \ | |/
| * Issue #16741: Fix an error reporting in int().Serhiy Storchaka2013-08-032-51/+67
* | Minor consistency fixes for some longobject.c exception messages:Mark Dickinson2013-08-031-4/+4
* | Issue #18214: Improve finalization of Python modules to avoid setting their g...Antoine Pitrou2013-07-311-8/+21
* | Issue #18112: PEP 442 implementation (safe object finalization).Antoine Pitrou2013-07-303-123/+147
* | Issue #18520: Fix _PyDict_GetItemId(), suppress _PyUnicode_FromId() errorVictor Stinner2013-07-221-1/+3
* | Issue #18520: Fix PyFunction_NewWithQualName() error handlingVictor Stinner2013-07-221-10/+9
* | Reindent PyFunction_NewWithQualName()Victor Stinner2013-07-221-49/+49
* | Issue #18520: Add a new PyStructSequence_InitType2() function, same thanVictor Stinner2013-07-223-15/+37
* | Propagate error when PyByteArray_Resize() fails in bytearray_translate()Christian Heimes2013-07-211-1/+4
|\ \ | |/
| * Propagate error when PyByteArray_Resize() fails in bytearray_translate()Christian Heimes2013-07-211-1/+4
* | Check return value of PyType_Ready(&EncodingMapType)Christian Heimes2013-07-201-1/+2
|\ \ | |/
| * Check return value of PyType_Ready(&EncodingMapType)Christian Heimes2013-07-201-1/+2
* | Issue #18327: Fix argument order in call to compatible_for_assignment(oldto, ...Christian Heimes2013-07-201-1/+1
* | Issue #18408: Fix list_ass_slice(), handle list_resize() failureVictor Stinner2013-07-191-3/+8
* | Issue #18408: PyObject_Str(), PyObject_Repr() and type_call() now fail with anVictor Stinner2013-07-172-0/+23
* | Issue #18408: Fix dict_repr(), don't call PyObject_Repr() with an exception setVictor Stinner2013-07-171-0/+3
* | longobject.c: add an assertion to ensure that MEDIUM_VALUE() is only called onVictor Stinner2013-07-171-1/+2
* | Issue #18408: Rewrite NEGATE() macro in longobject.c to handle PyLong_FromLon...Victor Stinner2013-07-171-24/+51
* | Issue #18408: Fix PyType_Ready(), handle _PyDict_SetItemId() failureVictor Stinner2013-07-171-3/+7
* | Issue #18408: Fix Py_ReprEnter(), handle PyList_Append() failureVictor Stinner2013-07-171-1/+2
* | Issue #18408: Fix listpop(), handle list_ass_slice() failureVictor Stinner2013-07-171-6/+4