mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-09 21:46:42 +08:00
Update and improve py_compile module stubs. (#3240)
This commit is contained in:
committed by
Jelle Zijlstra
parent
ce0dc8a23d
commit
8b28753b64
@@ -1,7 +1,8 @@
|
||||
# Stubs for py_compile (Python 2 and 3)
|
||||
import enum
|
||||
import sys
|
||||
|
||||
from typing import Optional, List, Text, AnyStr, Union
|
||||
from typing import Optional, List, Text, AnyStr, Union, Type
|
||||
|
||||
_EitherStr = Union[bytes, Text]
|
||||
|
||||
@@ -10,9 +11,16 @@ class PyCompileError(Exception):
|
||||
exc_value: BaseException
|
||||
file: str
|
||||
msg: str
|
||||
def __init__(self, exc_type: str, exc_value: BaseException, file: str, msg: str = ...) -> None: ...
|
||||
def __init__(self, exc_type: Type[BaseException], exc_value: BaseException, file: str, msg: str = ...) -> None: ...
|
||||
|
||||
if sys.version_info >= (3, 2):
|
||||
if sys.version_info >= (3, 7):
|
||||
class PycInvalidationMode(enum.Enum):
|
||||
TIMESTAMP: int = ...
|
||||
CHECKED_HASH: int = ...
|
||||
UNCHECKED_HASH: int = ...
|
||||
def _get_default_invalidation_mode() -> PycInvalidationMode: ...
|
||||
def compile(file: AnyStr, cfile: Optional[AnyStr] = ..., dfile: Optional[AnyStr] = ..., doraise: bool = ..., optimize: int = ..., invalidation_mode: Optional[PycInvalidationMode] = ...) -> Optional[AnyStr]: ...
|
||||
elif sys.version_info >= (3, 2):
|
||||
def compile(file: AnyStr, cfile: Optional[AnyStr] = ..., dfile: Optional[AnyStr] = ..., doraise: bool = ..., optimize: int = ...) -> Optional[AnyStr]: ...
|
||||
else:
|
||||
def compile(file: _EitherStr, cfile: Optional[_EitherStr] = ..., dfile: Optional[_EitherStr] = ..., doraise: bool = ...) -> None: ...
|
||||
|
||||
Reference in New Issue
Block a user