Files
cpython/Objects
Guido van Rossum c2504931ee Optimize unicode_hash() by not calling
_PyUnicode_AsDefaultEncodedString() at all -- this saves two object
allocations (three block allocations!)  and lots of redundant work.
By using the same hash algorithm as string_hash(), we maintain the
invariant that the hash of an ASCII string is the same whether
represented as a PyString or a PyUnicode.
2007-09-18 19:42:40 +00:00
..
2007-09-10 16:53:45 +00:00
2007-08-25 07:41:59 +00:00
2007-09-10 07:59:54 +00:00
2007-09-01 13:59:50 +00:00