]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
Unified naming convention for free lists and their limits. All free lists
authorChristian Heimes <christian@cheimes.de>
Wed, 6 Feb 2008 13:33:44 +0000 (13:33 +0000)
committerChristian Heimes <christian@cheimes.de>
Wed, 6 Feb 2008 13:33:44 +0000 (13:33 +0000)
commit5b970ad483332dc6c5f3e84a238317d45f844421
tree753dc573beb62ee375d27ebdb8ed58a24683dda2
parent6075a82243c7646dcdd45b424cf3e5c676f31ccf
Unified naming convention for free lists and their limits. All free lists
in Object/ are named ``free_list``, the counter ``numfree`` and the upper
limit is a macro ``PyName_MAXFREELIST`` inside an #ifndef block.

The chances should make it easier to adjust Python for platforms with
less memory, e.g. mobile phones.
Misc/NEWS
Objects/classobject.c
Objects/dictobject.c
Objects/frameobject.c
Objects/listobject.c
Objects/methodobject.c
Objects/setobject.c
Objects/tupleobject.c
Objects/unicodeobject.c