diff options
author | Sjoerd Mullender <sjoerd@acm.org> | 1993-10-22 12:04:32 (GMT) |
---|---|---|
committer | Sjoerd Mullender <sjoerd@acm.org> | 1993-10-22 12:04:32 (GMT) |
commit | 3bb8a05947fb67ed827dd1e8d7c0a982a1ff989e (patch) | |
tree | cb9c4f6b18f70822ade606f269fc043be542f5da /Include | |
parent | a75d306e2b799aa891666899ca973bec82b2362b (diff) | |
download | cpython-3bb8a05947fb67ed827dd1e8d7c0a982a1ff989e.zip cpython-3bb8a05947fb67ed827dd1e8d7c0a982a1ff989e.tar.gz cpython-3bb8a05947fb67ed827dd1e8d7c0a982a1ff989e.tar.bz2 |
Several optimizations and speed improvements.
cstubs: Use Matrix type instead of float[4][4].
Diffstat (limited to 'Include')
-rw-r--r-- | Include/stringobject.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Include/stringobject.h b/Include/stringobject.h index a4b4ea6..fa2e8a1 100644 --- a/Include/stringobject.h +++ b/Include/stringobject.h @@ -51,6 +51,9 @@ functions should be applied to nil objects. typedef struct { OB_VARHEAD +#ifdef CACHE_HASH + long ob_shash; +#endif char ob_sval[1]; } stringobject; |