File tree 2 files changed +4
-3
lines changed
2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -96,9 +96,9 @@ Operating System Utilities
96
96
97
97
Return true when the interpreter runs out of stack space. This is a reliable
98
98
check, but is only available when :const :`USE_STACKCHECK` is defined (currently
99
- on Windows using the Microsoft Visual C++ compiler). : const :`USE_STACKCHECK`
100
- will be defined automatically; you should never change the definition in your
101
- own code.
99
+ on certain versions of Windows using the Microsoft Visual C++ compiler).
100
+ : const :`USE_STACKCHECK` will be defined automatically; you should never
101
+ change the definition in your own code.
102
102
103
103
104
104
.. c :function :: PyOS_sighandler_t PyOS_getsig (int i)
Original file line number Diff line number Diff line change @@ -24,6 +24,7 @@ PyAPI_DATA(int) (*PyOS_InputHook)(void);
24
24
25
25
#if defined(WIN32 ) && !defined(MS_WIN64 ) && !defined(_M_ARM ) && defined(_MSC_VER ) && _MSC_VER >= 1300
26
26
/* Enable stack checking under Microsoft C */
27
+ // When changing the platforms, ensure PyOS_CheckStack() docs are still correct
27
28
#define USE_STACKCHECK
28
29
#endif
29
30
You can’t perform that action at this time.
0 commit comments