11import sys
22from _typeshed import StrPath
3- from typing import Final
3+ from typing import Final , Literal
44
55if sys .platform == "win32" :
66 from ctypes import windll as windll
@@ -9,27 +9,28 @@ __version__: Final[str]
99__version_info__ : Final [tuple [int , int , int ]]
1010unicode = str
1111system : Final [str ]
12+ PY3 : Literal [True ]
1213
1314def user_data_dir (
1415 appname : StrPath | None = None , appauthor : StrPath | None = None , version : StrPath | None = None , roaming : bool = False
1516) -> StrPath : ...
1617def site_data_dir (
17- appname : StrPath | None = None , appauthor : StrPath | None = None , version : StrPath | None = None , roaming : bool = False
18+ appname : StrPath | None = None , appauthor : StrPath | None = None , version : StrPath | None = None , multipath : bool = False
1819) -> StrPath : ...
1920def user_config_dir (
2021 appname : StrPath | None = None , appauthor : StrPath | None = None , version : StrPath | None = None , roaming : bool = False
2122) -> StrPath : ...
2223def site_config_dir (
23- appname : StrPath | None = None , appauthor : StrPath | None = None , version : StrPath | None = None , roaming : bool = False
24+ appname : StrPath | None = None , appauthor : StrPath | None = None , version : StrPath | None = None , multipath : bool = False
2425) -> StrPath : ...
2526def user_cache_dir (
26- appname : StrPath | None = None , appauthor : StrPath | None = None , version : StrPath | None = None , roaming : bool = False
27+ appname : StrPath | None = None , appauthor : StrPath | None = None , version : StrPath | None = None , opinion : bool = True
2728) -> StrPath : ...
2829def user_state_dir (
2930 appname : StrPath | None = None , appauthor : StrPath | None = None , version : StrPath | None = None , roaming : bool = False
3031) -> StrPath : ...
3132def user_log_dir (
32- appname : StrPath | None = None , appauthor : StrPath | None = None , version : StrPath | None = None , roaming : bool = False
33+ appname : StrPath | None = None , appauthor : StrPath | None = None , version : StrPath | None = None , opinion : bool = True
3334) -> StrPath : ...
3435
3536class AppDirs :
0 commit comments