diff options
author | Georg Brandl <georg@python.org> | 2010-03-07 15:23:59 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2010-03-07 15:23:59 (GMT) |
commit | 21e99f492419f97b4e5818081440742ecfde269f (patch) | |
tree | 94ec0f7c638ae647ff6ff97962b7995b7d4d10ef /Misc/SpecialBuilds.txt | |
parent | c02bbe328df8d0edf646c56fb4b7748a54500e6c (diff) | |
download | cpython-21e99f492419f97b4e5818081440742ecfde269f.zip cpython-21e99f492419f97b4e5818081440742ecfde269f.tar.gz cpython-21e99f492419f97b4e5818081440742ecfde269f.tar.bz2 |
#5341: more built-in vs builtin fixes.
Diffstat (limited to 'Misc/SpecialBuilds.txt')
-rw-r--r-- | Misc/SpecialBuilds.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Misc/SpecialBuilds.txt b/Misc/SpecialBuilds.txt index fa87d92..25bb6d1 100644 --- a/Misc/SpecialBuilds.txt +++ b/Misc/SpecialBuilds.txt @@ -37,7 +37,7 @@ Py_TRACE_REFS introduced in 1.4 Turn on heavy reference debugging. This is major surgery. Every PyObject grows two more pointers, to maintain a doubly-linked list of all live -heap-allocated objects. Most builtin type objects are not in this list, +heap-allocated objects. Most built-in type objects are not in this list, as they're statically allocated. Starting in Python 2.3, if COUNT_ALLOCS (see below) is also defined, a static type object T does appear in this list if at least one object of type T has been created. |