diff options
| author | Jack Jansen <jack.jansen@cwi.nl> | 2001-11-14 15:48:13 +0000 |
|---|---|---|
| committer | Jack Jansen <jack.jansen@cwi.nl> | 2001-11-14 15:48:13 +0000 |
| commit | 1062e706e5778d17b590414529c9e0191e24bea0 (patch) | |
| tree | 034ed3c4788ac1e09dfd20cd6a6936cb67b0d931 /Tools | |
| parent | 418c3b1e26770dd3920ed750f53f586b374e61bb (diff) | |
| download | cpython-git-1062e706e5778d17b590414529c9e0191e24bea0.tar.gz | |
Don't initialize tp_type statically, it won't work on Windows. Spotted
by Thomas Heller (patch 459442).
Diffstat (limited to 'Tools')
| -rw-r--r-- | Tools/bgen/bgen/bgenObjectDefinition.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tools/bgen/bgen/bgenObjectDefinition.py b/Tools/bgen/bgen/bgenObjectDefinition.py index 01585bb8b3..1d5cb22795 100644 --- a/Tools/bgen/bgen/bgenObjectDefinition.py +++ b/Tools/bgen/bgen/bgenObjectDefinition.py @@ -164,7 +164,7 @@ class ObjectDefinition(GeneratorGroup): Output() Output("%sPyTypeObject %s = {", sf, self.typename) IndentLevel() - Output("PyObject_HEAD_INIT(&PyType_Type)") + Output("PyObject_HEAD_INIT(NULL)") Output("0, /*ob_size*/") Output("\"%s\", /*tp_name*/", self.name) Output("sizeof(%s), /*tp_basicsize*/", self.objecttype) |
