Skip to content

Commit dd2e38d

Browse files
pablogsalYhg1s
andauthored
Update Include/internal/pycore_lazyimportobject.h
Co-authored-by: T. Wouters <thomas@python.org>
1 parent 239c717 commit dd2e38d

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

Include/internal/pycore_lazyimportobject.h

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,7 @@ typedef struct {
2323
PyCodeObject *lz_code; // Code object where the lazy import was created.
2424
int lz_instr_offset; // Instruction offset where the lazy import was created.
2525
// Cached result from the first thread to resolve this lazy import.
26-
// Protected by the global import lock. When non-NULL, subsequent
27-
// threads skip the import and return this value directly.
26+
// Protected by the global import lock.
2827
PyObject *lz_resolved;
2928
} PyLazyImportObject;
3029

0 commit comments

Comments
 (0)