mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-01-02 01:23:24 +08:00
@@ -1,12 +1,6 @@
|
||||
import sys
|
||||
from typing import AnyStr, Iterator, List, Union
|
||||
|
||||
if sys.version_info >= (3, 6):
|
||||
def glob0(dirname: AnyStr, pattern: AnyStr) -> List[AnyStr]: ...
|
||||
|
||||
else:
|
||||
def glob0(dirname: AnyStr, basename: AnyStr) -> List[AnyStr]: ...
|
||||
|
||||
def glob0(dirname: AnyStr, pattern: AnyStr) -> List[AnyStr]: ...
|
||||
def glob1(dirname: AnyStr, pattern: AnyStr) -> List[AnyStr]: ...
|
||||
def glob(pathname: AnyStr, *, recursive: bool = ...) -> List[AnyStr]: ...
|
||||
def iglob(pathname: AnyStr, *, recursive: bool = ...) -> Iterator[AnyStr]: ...
|
||||
|
||||
Reference in New Issue
Block a user