Make _fields attr for no fields consistent with _attributes attr.
This commit is contained in:
parent
ebc8dedd19
commit
2c55c597fa
|
@ -163,6 +163,9 @@ class AST_Tests(unittest.TestCase):
|
|||
self.assertEquals(x.right, 3)
|
||||
self.assertEquals(x.lineno, 0)
|
||||
|
||||
# this used to fail because Sub._fields was None
|
||||
x = _ast.Sub()
|
||||
|
||||
|
||||
def test_main():
|
||||
test_support.run_unittest(AST_Tests)
|
||||
|
|
|
@ -674,14 +674,9 @@ static PyTypeObject* make_type(char *type, PyTypeObject* base, char**fields, int
|
|||
{
|
||||
PyObject *fnames, *result;
|
||||
int i;
|
||||
if (num_fields) {
|
||||
fnames = PyTuple_New(num_fields);
|
||||
if (!fnames) return NULL;
|
||||
} else {
|
||||
fnames = Py_None;
|
||||
Py_INCREF(Py_None);
|
||||
}
|
||||
for(i=0; i < num_fields; i++) {
|
||||
fnames = PyTuple_New(num_fields);
|
||||
if (!fnames) return NULL;
|
||||
for (i = 0; i < num_fields; i++) {
|
||||
PyObject *field = PyString_FromString(fields[i]);
|
||||
if (!field) {
|
||||
Py_DECREF(fnames);
|
||||
|
|
|
@ -465,14 +465,9 @@ static PyTypeObject* make_type(char *type, PyTypeObject* base, char**fields, int
|
|||
{
|
||||
PyObject *fnames, *result;
|
||||
int i;
|
||||
if (num_fields) {
|
||||
fnames = PyTuple_New(num_fields);
|
||||
if (!fnames) return NULL;
|
||||
} else {
|
||||
fnames = Py_None;
|
||||
Py_INCREF(Py_None);
|
||||
}
|
||||
for(i=0; i < num_fields; i++) {
|
||||
fnames = PyTuple_New(num_fields);
|
||||
if (!fnames) return NULL;
|
||||
for (i = 0; i < num_fields; i++) {
|
||||
PyObject *field = PyString_FromString(fields[i]);
|
||||
if (!field) {
|
||||
Py_DECREF(fnames);
|
||||
|
|
Loading…
Reference in New Issue