Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 514a0f2

Browse files
committed
Obsubmit.
1 parent c4afa10 commit 514a0f2

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Python/Python-ast.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33

44
/*
5-
__version__ 55270.
5+
__version__ 55343.
66
77
This module must be committed separately after each AST grammar change;
88
The __version__ number is set to the revision number of the commit
@@ -3113,7 +3113,7 @@ init_ast(void)
31133113
if (PyDict_SetItemString(d, "AST", (PyObject*)AST_type) < 0) return;
31143114
if (PyModule_AddIntConstant(m, "PyCF_ONLY_AST", PyCF_ONLY_AST) < 0)
31153115
return;
3116-
if (PyModule_AddStringConstant(m, "__version__", "55270") < 0)
3116+
if (PyModule_AddStringConstant(m, "__version__", "55343") < 0)
31173117
return;
31183118
if (PyDict_SetItemString(d, "mod", (PyObject*)mod_type) < 0) return;
31193119
if (PyDict_SetItemString(d, "Module", (PyObject*)Module_type) < 0)

0 commit comments

Comments
 (0)