commit | 56716150e6e52a63ec8eaae5476b427684d22881 | [log] [tgz] |
---|---|---|
author | Armin Rigo <arigo@tunes.org> | Sun Mar 21 20:27:49 2004 +0000 |
committer | Armin Rigo <arigo@tunes.org> | Sun Mar 21 20:27:49 2004 +0000 |
tree | b74f62f4d1f04483254f9eebbcb6c6e102b156ab | |
parent | abce8a681c499382de3cb8fbdf5b2eba036eca26 [diff] |
This is the fastest I could get on Intel GCC. I kept the memset() in to clear the newly created tuples, but tuples added in the freelist are now cleared in tupledealloc already (which is very cheap, because we are already Py_XDECREF'ing all elements anyway). Python should have a standard Py_ZAP macro like ZAP in pystate.c.