mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-09 05:24:52 +08:00
Use lowercase type everywhere (#6853)
This commit is contained in:
@@ -1,12 +1,12 @@
|
||||
import sys
|
||||
from typing import AnyStr, Type
|
||||
from typing import AnyStr
|
||||
|
||||
class PyCompileError(Exception):
|
||||
exc_type_name: str
|
||||
exc_value: BaseException
|
||||
file: str
|
||||
msg: str
|
||||
def __init__(self, exc_type: Type[BaseException], 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, 7):
|
||||
import enum
|
||||
|
||||
Reference in New Issue
Block a user