Home | History | Annotate | Download | only in Python

Lines Matching defs:Num

773         Num_type = make_type("Num", expr_type, Num_fields, 1);
1815 Num(object n, int lineno, int col_offset, PyArena *arena)
1820 "field n is required for Num");
1827 p->v.Num.n = n;
2819 value = ast2obj_object(o->v.Num.n);
5643 PyErr_SetString(PyExc_TypeError, "required field \"n\" missing from Num");
5646 *out = Num(n, lineno, col_offset, arena);
6841 if (PyDict_SetItemString(d, "Num", (PyObject*)Num_type) < 0) return;