diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2011-03-13 02:29:11 +0200 |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2011-03-13 02:29:11 +0200 |
commit | 673f81f4274312eab9589d06354e196610a4cae0 (patch) | |
tree | b4106c6f57ad283f7191ce1875f3203bbc63f28b /Python/Python-ast.c | |
parent | e743bef424bf64842695fc6e121b364f1c8b61fc (diff) | |
parent | 62af56412a8c773247c801ce4d6204067c629b9e (diff) | |
download | cpython-673f81f4274312eab9589d06354e196610a4cae0.tar.gz |
Merge with 3.2.
Diffstat (limited to 'Python/Python-ast.c')
-rw-r--r-- | Python/Python-ast.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Python/Python-ast.c b/Python/Python-ast.c index 2c09f96f0e..726227cebb 100644 --- a/Python/Python-ast.c +++ b/Python/Python-ast.c @@ -2,7 +2,7 @@ /* - __version__ 82163. + __version__ 68409:c017695acf19. This module must be committed separately after each AST grammar change; The __version__ number is set to the revision number of the commit @@ -6739,7 +6739,8 @@ PyInit__ast(void) NULL; if (PyModule_AddIntConstant(m, "PyCF_ONLY_AST", PyCF_ONLY_AST) < 0) return NULL; - if (PyModule_AddStringConstant(m, "__version__", "82163") < 0) + if (PyModule_AddStringConstant(m, "__version__", "68409:c017695acf19") + < 0) return NULL; if (PyDict_SetItemString(d, "mod", (PyObject*)mod_type) < 0) return NULL; |