@@ -410,7 +410,7 @@ Initializing and finalizing the interpreter
410410 (zero) if not. After :c:func:`Py_FinalizeEx` is called, this returns false until
411411 :c:func:`Py_Initialize` is called again.
412412
413- .. versionchanged:: next
413+ .. versionchanged:: 3.15
414414 This function no longer returns true until initialization has fully
415415 completed, including import of the :mod:`site` module. Previously it
416416 could return true while :c:func:`Py_Initialize` was still running.
@@ -631,7 +631,7 @@ it possible to avoid these issues by temporarily preventing finalization:
631631 automatically after all guards are released: it requires an explicit
632632 :c:func:`Py_EndInterpreter` call.
633633
634- .. versionadded:: next
634+ .. versionadded:: 3.15
635635
636636
637637.. c:function:: PyInterpreterGuard *PyInterpreterGuard_FromCurrent(void)
@@ -671,7 +671,7 @@ it possible to avoid these issues by temporarily preventing finalization:
671671
672672 The caller must hold an :term: `attached thread state `.
673673
674- .. versionadded :: next
674+ .. versionadded :: 3.15
675675
676676
677677.. c :function :: PyInterpreterGuard *PyInterpreterGuard_FromView (PyInterpreterView *view)
@@ -688,7 +688,7 @@ it possible to avoid these issues by temporarily preventing finalization:
688688
689689 The caller does not need to hold an :term: `attached thread state `.
690690
691- .. versionadded :: next
691+ .. versionadded :: 3.15
692692
693693
694694.. c :function :: void PyInterpreterGuard_Close (PyInterpreterGuard *guard)
@@ -705,7 +705,7 @@ it possible to avoid these issues by temporarily preventing finalization:
705705 This function cannot fail, and the caller doesn't need to hold an
706706 :term: `attached thread state `.
707707
708- .. versionadded :: next
708+ .. versionadded :: 3.15
709709
710710
711711.. _interpreter-views :
@@ -723,7 +723,7 @@ deleted. This can be done using interpreter views.
723723 This is a thread-safe way to access an interpreter that may have be
724724 finalizing or already destroyed.
725725
726- .. versionadded :: next
726+ .. versionadded :: 3.15
727727
728728
729729.. c :function :: PyInterpreterView *PyInterpreterView_FromCurrent (void)
@@ -738,7 +738,7 @@ deleted. This can be done using interpreter views.
738738
739739 The caller must hold an :term: `attached thread state `.
740740
741- .. versionadded :: next
741+ .. versionadded :: 3.15
742742
743743
744744.. c :function :: void PyInterpreterView_Close (PyInterpreterView *view)
@@ -752,7 +752,7 @@ deleted. This can be done using interpreter views.
752752 This function cannot fail, and the caller doesn't need to hold an
753753 :term:`attached thread state`.
754754
755- .. versionadded:: next
755+ .. versionadded:: 3.15
756756
757757
758758.. c:function:: PyInterpreterView *PyInterpreterView_FromMain(void)
@@ -774,7 +774,7 @@ deleted. This can be done using interpreter views.
774774
775775 The caller does not need to hold an :term: `attached thread state `.
776776
777- .. versionadded :: next
777+ .. versionadded :: 3.15
778778
779779
780780Process-wide parameters
0 commit comments