diff options
author | Thomas Wouters <thomas@python.org> | 2006-04-21 14:02:59 (GMT) |
---|---|---|
committer | Thomas Wouters <thomas@python.org> | 2006-04-21 14:02:59 (GMT) |
commit | c350d1a1106658d968badf2c35f5b10ddaa59a3e (patch) | |
tree | 2ac8e8c709ae06999240c7d76a892c918ff83f7c | |
parent | 7ec155f5be6cdcbf55a607c2846cbd4ea80c3681 (diff) | |
download | cpython-c350d1a1106658d968badf2c35f5b10ddaa59a3e.zip cpython-c350d1a1106658d968badf2c35f5b10ddaa59a3e.tar.gz cpython-c350d1a1106658d968badf2c35f5b10ddaa59a3e.tar.bz2 |
Commit regenerated Python-ast.c.
-rw-r--r-- | Python/Python-ast.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/Python-ast.c b/Python/Python-ast.c index 249f70e..8e16cfb 100644 --- a/Python/Python-ast.c +++ b/Python/Python-ast.c @@ -3048,7 +3048,7 @@ init_ast(void) if (PyDict_SetItemString(d, "AST", (PyObject*)AST_type) < 0) return; if (PyModule_AddIntConstant(m, "PyCF_ONLY_AST", PyCF_ONLY_AST) < 0) return; - if (PyModule_AddStringConstant(m, "__version__", "42753") < 0) + if (PyModule_AddStringConstant(m, "__version__", "45597") < 0) return; if (PyDict_SetItemString(d, "mod", (PyObject*)mod_type) < 0) return; if (PyDict_SetItemString(d, "Module", (PyObject*)Module_type) < 0) |