Skip to content

Commit 74507bc

Browse files
sys.flags: add safe_path for 3.11
python/cpython#31542
1 parent e8b3619 commit 74507bc

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

stdlib/sys.pyi

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -122,6 +122,9 @@ class _flags(_uninstantiable_structseq, _FlagTuple):
122122
if sys.version_info >= (3, 10):
123123
@property
124124
def warn_default_encoding(self) -> int: ... # undocumented
125+
if sys.version_info >= (3, 11):
126+
@property
127+
def safe_path(self) -> bool: ...
125128

126129
float_info: _float_info
127130

0 commit comments

Comments
 (0)