mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-07 04:34:28 +08:00
8 lines
205 B
Python
8 lines
205 B
Python
import sys
|
|
from _stat import *
|
|
from typing import Final
|
|
|
|
if sys.version_info >= (3, 13):
|
|
# https://github.com/python/cpython/issues/114081#issuecomment-2119017790
|
|
SF_RESTRICTED: Final = 0x00080000
|