mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-06 20:24:30 +08:00
8 lines
225 B
Python
8 lines
225 B
Python
import sys
|
|
from typing import Union
|
|
|
|
if sys.version_info < (3, 7):
|
|
def url2pathname(pathname: str) -> str: ...
|
|
def pathname2url(pathname: str) -> str: ...
|
|
def _pncomp2url(component: Union[str, bytes]) -> str: ...
|