]> granicus.if.org Git - python/commit
Initialize base types before child types
authorVictor Stinner <victor.stinner@gmail.com>
Mon, 2 Jun 2014 12:10:59 +0000 (14:10 +0200)
committerVictor Stinner <victor.stinner@gmail.com>
Mon, 2 Jun 2014 12:10:59 +0000 (14:10 +0200)
commit5a1bb4e0809e6cc1468138fe788ce687e3d8d8f4
treeabbf3f3e771cd1b4dd7415ff8b6f9005f69148e2
parent7df3c156fafe7df1da67227b44029779695d84de
Initialize base types before child types

object (PyBaseObject_Type) is the base type of type (PyType_Type), int
(PyLong_Type) is the base type of bool (PyBool_Type).
Objects/object.c