Skip to content

Commit ea120fc

Browse files
committed
Regen stuff
1 parent db151a5 commit ea120fc

File tree

17 files changed

+26
-33
lines changed

17 files changed

+26
-33
lines changed

Include/internal/pycore_ceval.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -311,7 +311,7 @@ PyAPI_FUNC(void) _PyEval_FormatExcCheckArg(PyThreadState *tstate, PyObject *exc,
311311
PyAPI_FUNC(void) _PyEval_FormatExcUnbound(PyThreadState *tstate, PyCodeObject *co, int oparg);
312312
PyAPI_FUNC(void) _PyEval_FormatKwargsError(PyThreadState *tstate, PyObject *func, PyObject *kwargs);
313313
PyAPI_FUNC(PyObject *) _PyEval_ImportFrom(PyThreadState *, PyObject *, PyObject *);
314-
PyAPI_FUNC(PyObject *) _PyEval_LazyImportName(PyThreadState *tstate, PyObject *builtins, PyObject *globals,
314+
PyAPI_FUNC(PyObject *) _PyEval_LazyImportName(PyThreadState *tstate, PyObject *builtins, PyObject *globals,
315315
PyObject *locals, PyObject *name, PyObject *fromlist, PyObject *level, int lazy);
316316
PyAPI_FUNC(PyObject *) _PyEval_LazyImportFrom(PyThreadState *tstate, PyObject *v, PyObject *name);
317317
PyAPI_FUNC(PyObject *) _PyEval_ImportName(PyThreadState *tstate, PyObject *builtins, PyObject *globals, PyObject *locals,

Include/internal/pycore_global_objects_fini_generated.h

Lines changed: 0 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Include/internal/pycore_global_strings.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -429,7 +429,6 @@ struct _Py_global_strings {
429429
STRUCT_FOR_ID(effective_ids)
430430
STRUCT_FOR_ID(element_factory)
431431
STRUCT_FOR_ID(emptyerror)
432-
STRUCT_FOR_ID(enabled)
433432
STRUCT_FOR_ID(encode)
434433
STRUCT_FOR_ID(encoding)
435434
STRUCT_FOR_ID(end)

Include/internal/pycore_runtime_init_generated.h

Lines changed: 0 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Include/internal/pycore_unicodeobject_generated.h

Lines changed: 0 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Lib/rlcompleter.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ def attr_matches(self, text):
191191
continue
192192

193193
if (isinstance(thisobject, types.ModuleType)
194-
and
194+
and
195195
isinstance(thisobject.__dict__.get(word),types.LazyImportType)
196196
):
197197
value = thisobject.__dict__.get(word)
Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,2 @@
11
def foo():
22
return 'foo'
3-
Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1 @@
11
def f(): pass
2-

Programs/test_frozenmain.h

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Python/bltinmodule.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,7 @@ __lazy_import__ as builtin___lazy_import__
297297
fromlist: object(c_default="NULL") = ()
298298
level: int = 0
299299
300-
Lazily imports a module.
300+
Lazily imports a module.
301301
302302
Returns either the module to be imported or a imp.lazy_module object which
303303
indicates the module to be lazily imported.

0 commit comments

Comments
 (0)