Skip to content

Commit 610af78

Browse files
committed
Address feedback
1 parent 0985e2a commit 610af78

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

Doc/library/types.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -350,7 +350,7 @@ Standard names are defined for the following types:
350350
actually accessed. This type can be used to detect lazy imports
351351
programmatically.
352352

353-
.. versionadded:: 3.15
353+
.. versionadded:: next
354354

355355
.. seealso:: :pep:`810`
356356

Doc/using/cmdline.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -700,7 +700,7 @@ Miscellaneous options
700700
(the default) respects the ``lazy`` keyword in source code.
701701
See also :envvar:`PYTHON_LAZY_IMPORTS`.
702702

703-
.. versionadded:: 3.15
703+
.. versionadded:: next
704704

705705
It also allows passing arbitrary values and retrieving them through the
706706
:data:`sys._xoptions` dictionary.
@@ -1356,7 +1356,7 @@ conflict.
13561356

13571357
See also the :option:`-X lazy_imports <-X>` command-line option.
13581358

1359-
.. versionadded:: 3.15
1359+
.. versionadded:: next
13601360

13611361
Debug-mode variables
13621362
~~~~~~~~~~~~~~~~~~~~

Include/import.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ PyAPI_FUNC(int) PyImport_AppendInittab(
8888
PyObject* (*initfunc)(void)
8989
);
9090

91-
typedef enum {
91+
typedef enum {
9292
PyImport_LAZY_NORMAL,
9393
PyImport_LAZY_ALL,
9494
PyImport_LAZY_NONE,

Include/internal/pycore_magic_number.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,7 @@ Known values:
287287
Python 3.15a1 3654 (Fix missing exception handlers in logical expression)
288288
Python 3.15a1 3655 (Fix miscompilation of some module-level annotations)
289289
Python 3.15a1 3656 (Add TRACE_RECORD instruction, for platforms with switch based interpreter)
290-
Python 3.15a1 3657 Lazy imports IMPORT_NAME opcode changes
290+
Python 3.15a3 3657 (Lazy imports IMPORT_NAME opcode changes)
291291
292292
293293
Python 3.16 will start with 3700

Lib/rlcompleter.py

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

193193
if (isinstance(thisobject, types.ModuleType)
194194
and
195-
isinstance(thisobject.__dict__.get(word),types.LazyImportType)
195+
isinstance(thisobject.__dict__.get(word), types.LazyImportType)
196196
):
197197
value = thisobject.__dict__.get(word)
198198
else:

0 commit comments

Comments
 (0)