diff options
author | Amaury Forgeot d'Arc <amauryfa@gmail.com> | 2011-11-22 20:52:30 (GMT) |
---|---|---|
committer | Amaury Forgeot d'Arc <amauryfa@gmail.com> | 2011-11-22 20:52:30 (GMT) |
commit | 5e8f8104116edfcbfee2690a58391830bd9883ae (patch) | |
tree | 1a3b292251ce4c7b43b28a9283705a15f66eed55 /Python/Python-ast.c | |
parent | 58e8761da6d11653288b76d2dec6417000a20e74 (diff) | |
download | cpython-5e8f8104116edfcbfee2690a58391830bd9883ae.zip cpython-5e8f8104116edfcbfee2690a58391830bd9883ae.tar.gz cpython-5e8f8104116edfcbfee2690a58391830bd9883ae.tar.bz2 |
Issue #13436: commit regenerated Python-ast.c
Diffstat (limited to 'Python/Python-ast.c')
-rw-r--r-- | Python/Python-ast.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/Python/Python-ast.c b/Python/Python-ast.c index 89c07cd..a276b6c 100644 --- a/Python/Python-ast.c +++ b/Python/Python-ast.c @@ -622,11 +622,7 @@ static int obj2ast_int(PyObject* obj, int* out, PyArena* arena) { int i; if (!PyLong_Check(obj)) { - PyObject *s = PyObject_Repr(obj); - if (s == NULL) return 1; - PyErr_Format(PyExc_ValueError, "invalid integer value: %.400s", - PyBytes_AS_STRING(s)); - Py_DECREF(s); + PyErr_Format(PyExc_ValueError, "invalid integer value: %R", obj); return 1; } |