Add invalidate_caches for 3.14 (#13988)

This commit is contained in:
Max Muoto
2025-05-10 13:22:34 -05:00
committed by GitHub
parent b64e741a4a
commit ed5525b284
2 changed files with 3 additions and 1 deletions
@@ -480,7 +480,6 @@ pdb.set_trace
pkgutil.__all__
pkgutil.find_loader
pkgutil.get_loader
platform.invalidate_caches
pstats.FunctionProfile.__annotate_func__
pstats.FunctionProfile.__annotations_cache__
pstats.StatsProfile.__annotate_func__
+3
View File
@@ -82,3 +82,6 @@ if sys.version_info >= (3, 13):
is_emulator: bool = False,
) -> AndroidVer: ...
def ios_ver(system: str = "", release: str = "", model: str = "", is_simulator: bool = False) -> IOSVersionInfo: ...
if sys.version_info >= (3, 14):
def invalidate_caches() -> None: ...