You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: InternalDocs/interpreter.md
+1-2Lines changed: 1 addition & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -534,8 +534,7 @@ There are three different types of interpreters to choose from based on compiler
534
534
of the lifetimes of automatic variables, function parameters, and temporaries to ensure proper tail-calls. They
535
535
emit a compile error in case of a violation or detection failure. The ability to detect this varies depending on the compiler and
536
536
also on the optimization level. [Introducing additional scopes](https://github.com/python/cpython/blob/3908593039bde9d4b591ab09919003ee57418d64/Python/bytecodes.c#L2526),
537
-
[extracting problematic code paths into a separate function]
[extracting problematic code paths into a separate function](https://github.com/python/cpython/pull/143068/files#diff-729a985b0cb8b431cb291f1edb561bbbfea22e3f8c262451cd83328a0936a342R3724)
539
538
or [returning a pointer instead of taking it as an output parameter](https://github.com/python/cpython/blob/3908593039bde9d4b591ab09919003ee57418d64/Include/internal/pycore_ceval.h#L489-L492)
540
539
is particularly helpful to the MSVC compiler in this regard. Using `restrict` is another (currently unused) remedy.
0 commit comments