mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
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
1 changed files with 3 additions and 0 deletions
|
@ -3302,7 +3302,10 @@ PySys_SetArgvEx(int argc, wchar_t **argv, int updatepath)
|
||||||
void
|
void
|
||||||
PySys_SetArgv(int argc, wchar_t **argv)
|
PySys_SetArgv(int argc, wchar_t **argv)
|
||||||
{
|
{
|
||||||
|
_Py_COMP_DIAG_PUSH
|
||||||
|
_Py_COMP_DIAG_IGNORE_DEPR_DECLS
|
||||||
PySys_SetArgvEx(argc, argv, Py_IsolatedFlag == 0);
|
PySys_SetArgvEx(argc, argv, Py_IsolatedFlag == 0);
|
||||||
|
_Py_COMP_DIAG_POP
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Reimplementation of PyFile_WriteString() no calling indirectly
|
/* Reimplementation of PyFile_WriteString() no calling indirectly
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue