| Commit message (Expand) | Author | Age | Files | Lines |
* | Minor touchups. | Raymond Hettinger | 2013-09-02 | 1 | -4/+6 |
|
|
* | Factor-out the common code for setting a KeyError. | Raymond Hettinger | 2013-09-02 | 2 | -33/+5 |
|
|
* | Instead of XORed indicies, switch to a hybrid of linear probing and open addr... | Raymond Hettinger | 2013-09-02 | 1 | -91/+68 |
|
|
* | Update copyright. | Raymond Hettinger | 2013-09-01 | 1 | -1/+1 |
|
|
* | Further reduce the cost of hash collisions by inspecting an additional nearby... | Raymond Hettinger | 2013-09-01 | 1 | -4/+39 |
|
|
* | Close #18780: %-formatting now prints value for int subclasses with %d, %i, a... | Ethan Furman | 2013-08-31 | 1 | -5/+3 |
|
|
* | Tighten-up the lookkey() logic and beautify the code a bit. | Raymond Hettinger | 2013-08-29 | 1 | -88/+43 |
|
|
* | Issue #18783: Removed existing mentions of Python long type in docstrings, | Serhiy Storchaka | 2013-08-27 | 5 | -61/+60 |
|\ |
|
| * | Issue #18783: Removed existing mentions of Python long type in docstrings, | Serhiy Storchaka | 2013-08-27 | 5 | -61/+60 |
|
|
* | | Restore changeset 5bd9db528aed (issue #18408) | Victor Stinner | 2013-08-26 | 2 | -0/+22 |
|
|
* | | Issue #18408: _PyObject_Dump() now saves/restores the current exception | Victor Stinner | 2013-08-26 | 1 | -0/+6 |
|
|
* | | Various clarifications based on feedback & questions over the years. | Tim Peters | 2013-08-24 | 1 | -19/+96 |
|\ \
| |/ |
|
| * | Various clarifications based on feedback & questions over the years. | Tim Peters | 2013-08-24 | 1 | -19/+96 |
|
|
* | | Issue #18772: fix the gdb plugin after the set implementation changes | Antoine Pitrou | 2013-08-24 | 2 | -9/+3 |
|
|
* | | Back out 5bd9db528aed (issue #18408). It caused unsolved buildbot failures. | Antoine Pitrou | 2013-08-23 | 2 | -23/+0 |
|
|
* | | Add the same dummy type that is used in dictionaries. | Raymond Hettinger | 2013-08-23 | 1 | -15/+49 |
|
|
* | | Add line explaining the "%sort" test. | Tim Peters | 2013-08-22 | 1 | -0/+1 |
|\ \
| |/ |
|
| * | Add line explaining the "%sort" test. | Tim Peters | 2013-08-22 | 1 | -0/+1 |
|
|
* | | Issue 18797: Remove unneeded refcount adjustments for dummy objects. | Raymond Hettinger | 2013-08-22 | 1 | -16/+6 |
|
|
* | | Hoist the global dummy lookup out of the inner loop for set_merge(). | Raymond Hettinger | 2013-08-21 | 1 | -1/+3 |
|
|
* | | Remove a redundant hash table probe (this was artifact from an earlier draft ... | Raymond Hettinger | 2013-08-21 | 1 | -11/+0 |
|
|
* | | Issue 18772: Restore set dummy object back to unicode and restore the identi... | Raymond Hettinger | 2013-08-21 | 1 | -4/+4 |
|
|
* | | Issue18771: Reduce the cost of hash collisions for set objects. | Raymond Hettinger | 2013-08-19 | 1 | -20/+86 |
|
|
* | | Remove the else-clause because the conditions are no longer mutually exclusive. | Raymond Hettinger | 2013-08-17 | 1 | -1/+1 |
|
|
* | | Use a known unique object for the dummy entry. | Raymond Hettinger | 2013-08-17 | 1 | -25/+20 |
|
|
* | | Issue #18701: Remove support of old CPython versions (<3.0) from C code. | Serhiy Storchaka | 2013-08-16 | 1 | -5/+0 |
|
|
* | | Hoist the global "dummy" lookup outside of the reinsertion loop. | Raymond Hettinger | 2013-08-15 | 1 | -1/+3 |
|
|
* | | merge | Raymond Hettinger | 2013-08-14 | 1 | -9/+0 |
|\ \
| |/ |
|
| * | Issue 18719: Remove a false optimization | Raymond Hettinger | 2013-08-14 | 1 | -9/+0 |
|
|
| * | Silence compiler warning for an unused declaration | Raymond Hettinger | 2013-08-04 | 1 | -1/+0 |
|
|
* | | Issue #18722: Remove uses of the "register" keyword in C code. | Antoine Pitrou | 2013-08-13 | 20 | -196/+196 |
|
|
* | | Replace outdated optimization with clearer code that compiles better. | Raymond Hettinger | 2013-08-06 | 1 | -3/+3 |
|
|
* | | Issue #17934: Add a clear() method to frame objects, to help clean up expensi... | Antoine Pitrou | 2013-08-05 | 2 | -5/+31 |
|
|
* | | merge | Raymond Hettinger | 2013-08-04 | 1 | -1/+1 |
|\ \
| |/ |
|
| * | Silence compiler warning about an uninitialized variable | Raymond Hettinger | 2013-08-04 | 1 | -1/+1 |
|
|
* | | Issue #16741: Fix an error reporting in int(). | Serhiy Storchaka | 2013-08-03 | 2 | -52/+64 |
|\ \
| |/ |
|
| * | Issue #16741: Fix an error reporting in int(). | Serhiy Storchaka | 2013-08-03 | 2 | -51/+67 |
|
|
* | | Minor consistency fixes for some longobject.c exception messages: | Mark Dickinson | 2013-08-03 | 1 | -4/+4 |
|
|
* | | Issue #18214: Improve finalization of Python modules to avoid setting their g... | Antoine Pitrou | 2013-07-31 | 1 | -8/+21 |
|
|
* | | Issue #18112: PEP 442 implementation (safe object finalization). | Antoine Pitrou | 2013-07-30 | 3 | -123/+147 |
|
|
* | | Issue #18520: Fix _PyDict_GetItemId(), suppress _PyUnicode_FromId() error | Victor Stinner | 2013-07-22 | 1 | -1/+3 |
|
|
* | | Issue #18520: Fix PyFunction_NewWithQualName() error handling | Victor Stinner | 2013-07-22 | 1 | -10/+9 |
|
|
* | | Reindent PyFunction_NewWithQualName() | Victor Stinner | 2013-07-22 | 1 | -49/+49 |
|
|
* | | Issue #18520: Add a new PyStructSequence_InitType2() function, same than | Victor Stinner | 2013-07-22 | 3 | -15/+37 |
|
|
* | | Propagate error when PyByteArray_Resize() fails in bytearray_translate() | Christian Heimes | 2013-07-21 | 1 | -1/+4 |
|\ \
| |/ |
|
| * | Propagate error when PyByteArray_Resize() fails in bytearray_translate() | Christian Heimes | 2013-07-21 | 1 | -1/+4 |
|
|
* | | Check return value of PyType_Ready(&EncodingMapType) | Christian Heimes | 2013-07-20 | 1 | -1/+2 |
|\ \
| |/ |
|
| * | Check return value of PyType_Ready(&EncodingMapType) | Christian Heimes | 2013-07-20 | 1 | -1/+2 |
|
|
* | | Issue #18327: Fix argument order in call to compatible_for_assignment(oldto, ... | Christian Heimes | 2013-07-20 | 1 | -1/+1 |
|
|
* | | Issue #18408: Fix list_ass_slice(), handle list_resize() failure | Victor Stinner | 2013-07-19 | 1 | -3/+8 |
|
|