Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c4afa10 commit 514a0f2Copy full SHA for 514a0f2
1 file changed
Python/Python-ast.c
@@ -2,7 +2,7 @@
2
3
4
/*
5
- __version__ 55270.
+ __version__ 55343.
6
7
This module must be committed separately after each AST grammar change;
8
The __version__ number is set to the revision number of the commit
@@ -3113,7 +3113,7 @@ init_ast(void)
3113
if (PyDict_SetItemString(d, "AST", (PyObject*)AST_type) < 0) return;
3114
if (PyModule_AddIntConstant(m, "PyCF_ONLY_AST", PyCF_ONLY_AST) < 0)
3115
return;
3116
- if (PyModule_AddStringConstant(m, "__version__", "55270") < 0)
+ if (PyModule_AddStringConstant(m, "__version__", "55343") < 0)
3117
3118
if (PyDict_SetItemString(d, "mod", (PyObject*)mod_type) < 0) return;
3119
if (PyDict_SetItemString(d, "Module", (PyObject*)Module_type) < 0)
0 commit comments