Skip to content

Commit 7ea15d0

Browse files
committed
Prevent regeneration.
1 parent 8b4a3e8 commit 7ea15d0

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

Include/Python-ast.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -516,3 +516,4 @@ keyword_ty _Py_keyword(identifier arg, expr_ty value, PyArena *arena);
516516
alias_ty _Py_alias(identifier name, identifier asname, PyArena *arena);
517517

518518
PyObject* PyAST_mod2obj(mod_ty t);
519+

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__ 53866.
5+
__version__ 53872.
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
@@ -3125,7 +3125,7 @@ init_ast(void)
31253125
if (PyDict_SetItemString(d, "AST", (PyObject*)AST_type) < 0) return;
31263126
if (PyModule_AddIntConstant(m, "PyCF_ONLY_AST", PyCF_ONLY_AST) < 0)
31273127
return;
3128-
if (PyModule_AddStringConstant(m, "__version__", "53866") < 0)
3128+
if (PyModule_AddStringConstant(m, "__version__", "53872") < 0)
31293129
return;
31303130
if (PyDict_SetItemString(d, "mod", (PyObject*)mod_type) < 0) return;
31313131
if (PyDict_SetItemString(d, "Module", (PyObject*)Module_type) < 0)

0 commit comments

Comments
 (0)