stat: fix up (#11977)

This commit is contained in:
Shantanu
2024-05-18 19:16:46 -07:00
committed by GitHub
parent 5d580629be
commit 448870170c
2 changed files with 9 additions and 2 deletions

View File

@@ -1 +1,7 @@
import sys
from _stat import *
from typing import Literal
if sys.version_info >= (3, 13):
# https://github.com/python/cpython/issues/114081#issuecomment-2119017790
SF_RESTRICTED: Literal[0x00080000]