Big diff: Use new "|" union syntax (#5872)

This commit is contained in:
Akuli
2021-08-08 12:05:21 +03:00
committed by GitHub
parent b9adb7a874
commit ee487304d7
578 changed files with 8080 additions and 8966 deletions

View File

@@ -32,9 +32,9 @@ from posixpath import (
splitext as splitext,
supports_unicode_filenames as supports_unicode_filenames,
)
from typing import AnyStr, Optional, Tuple, overload
from typing import AnyStr, Tuple, overload
altsep: Optional[str]
altsep: str | None
@overload
def basename(s: PathLike[AnyStr]) -> AnyStr: ...