@@ -591,9 +591,12 @@ After several calls, ``LOAD_GLOBAL`` specializes to ``LOAD_GLOBAL_MODULE``:
591591 Lazy imports filter
592592-------------------
593593
594- *Note: This is an advanced feature. Library developers should NOT call these
595- functions. These are intended for specialized/advanced users who need
596- fine-grained control over lazy import behavior when using the global flags. *
594+ *Note: This is an advanced feature. These are intended for specialized/advanced
595+ users who need fine-grained control over lazy import behavior when using the
596+ global flags. Library developers are discouraged from using these functions as
597+ they can affect the runtime execution of applications (similar to
598+ ``sys.setrecursionlimit()``, ``sys.setswitchinterval()``, or
599+ ``gc.set_threshold()``). *
597600
598601This PEP adds the following new functions to the ``sys `` module to manage the
599602lazy imports filter:
@@ -672,9 +675,12 @@ Example:
672675 Global lazy imports control
673676----------------------------
674677
675- *Note: This is an advanced feature. Library developers should NOT use the global
676- activation mechanism. This is intended for application developers and framework
677- authors who need to control lazy imports across their entire application. *
678+ *Note: This is an advanced feature. This is intended for application developers
679+ and framework authors who need to control lazy imports across their entire
680+ application. Library developers are discouraged from using the global activation
681+ mechanism as it can affect the runtime execution of applications (similar to
682+ ``sys.setrecursionlimit()``, ``sys.setswitchinterval()``, or
683+ ``gc.set_threshold()``). *
678684
679685The global lazy imports flag can be controlled through:
680686
0 commit comments