mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-07 12:44:28 +08:00
Remove Python 3.7 branches (#11238)
This commit is contained in:
@@ -25,7 +25,7 @@ if sys.platform != "win32":
|
||||
if sys.platform != "linux" and sys.platform != "darwin":
|
||||
CLOCK_HIGHRES: int # Solaris only
|
||||
|
||||
if sys.version_info >= (3, 8) and sys.platform == "darwin":
|
||||
if sys.platform == "darwin":
|
||||
CLOCK_UPTIME_RAW: int
|
||||
|
||||
if sys.version_info >= (3, 9) and sys.platform == "linux":
|
||||
@@ -64,10 +64,6 @@ class struct_time(structseq[Any | int], _TimeTuple):
|
||||
def tm_gmtoff(self) -> int: ...
|
||||
|
||||
def asctime(t: _TimeTuple | struct_time = ...) -> str: ...
|
||||
|
||||
if sys.version_info < (3, 8):
|
||||
def clock() -> float: ...
|
||||
|
||||
def ctime(secs: float | None = ...) -> str: ...
|
||||
def gmtime(secs: float | None = ...) -> struct_time: ...
|
||||
def localtime(secs: float | None = ...) -> struct_time: ...
|
||||
|
||||
Reference in New Issue
Block a user