mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-08 13:04:46 +08:00
Big diff: Use new "|" union syntax (#5872)
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
import sys
|
||||
from typing import Iterable, Optional, SupportsFloat, SupportsInt, Tuple, overload
|
||||
from typing import Iterable, SupportsFloat, SupportsInt, Tuple, overload
|
||||
|
||||
e: float
|
||||
pi: float
|
||||
@@ -74,7 +74,7 @@ if sys.version_info >= (3, 9):
|
||||
def nextafter(__x: SupportsFloat, __y: SupportsFloat) -> float: ...
|
||||
|
||||
if sys.version_info >= (3, 8):
|
||||
def perm(__n: int, __k: Optional[int] = ...) -> int: ...
|
||||
def perm(__n: int, __k: int | None = ...) -> int: ...
|
||||
|
||||
def pow(__x: SupportsFloat, __y: SupportsFloat) -> float: ...
|
||||
|
||||
|
||||
Reference in New Issue
Block a user