Skip to content

Commit 002276a

Browse files
authored
Fix comment about check_lazy_import_compatibility (#39)
1 parent 578dbfd commit 002276a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Python/ceval.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3579,7 +3579,7 @@ _PyEval_LazyImportName(PyThreadState *tstate, PyObject *builtins,
35793579
}
35803580

35813581
if (!lazy) {
3582-
// see if __lazy_imports__ forces this to be lazy
3582+
// See if __lazy_modules__ forces this to be lazy.
35833583
lazy = check_lazy_import_compatibility(tstate, globals, name, level);
35843584
if (lazy < 0) {
35853585
return NULL;

0 commit comments

Comments
 (0)