mirror of https://github.com/python/cpython
gh-88279: Fix compiler warning for using deprecated PySys_SetArgvEx (GH-92428)
(cherry picked from commit bd030b633f
)
Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
This commit is contained in:
parent
565a5a3296
commit
14bd6df094
|
@ -3302,7 +3302,10 @@ PySys_SetArgvEx(int argc, wchar_t **argv, int updatepath)
|
|||
void
|
||||
PySys_SetArgv(int argc, wchar_t **argv)
|
||||
{
|
||||
_Py_COMP_DIAG_PUSH
|
||||
_Py_COMP_DIAG_IGNORE_DEPR_DECLS
|
||||
PySys_SetArgvEx(argc, argv, Py_IsolatedFlag == 0);
|
||||
_Py_COMP_DIAG_POP
|
||||
}
|
||||
|
||||
/* Reimplementation of PyFile_WriteString() no calling indirectly
|
||||
|
|
Loading…
Reference in New Issue