mirror of
https://github.com/python/cpython.git
synced 2025-10-17 04:08:28 +00:00
gh-77782: Py_FdIsInteractive() now uses PyConfig.interactive (#93916)
This commit is contained in:
parent
c5b750dc0b
commit
1735710873
6 changed files with 29 additions and 23 deletions
|
@ -180,7 +180,7 @@ int Py_UTF8Mode = 0;
|
|||
int Py_DebugFlag = 0; /* Needed by parser.c */
|
||||
int Py_VerboseFlag = 0; /* Needed by import.c */
|
||||
int Py_QuietFlag = 0; /* Needed by sysmodule.c */
|
||||
int Py_InteractiveFlag = 0; /* Needed by Py_FdIsInteractive() below */
|
||||
int Py_InteractiveFlag = 0; /* Previously, was used by Py_FdIsInteractive() */
|
||||
int Py_InspectFlag = 0; /* Needed to determine whether to exit at SystemExit */
|
||||
int Py_OptimizeFlag = 0; /* Needed by compile.c */
|
||||
int Py_NoSiteFlag = 0; /* Suppress 'import site' */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue