mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-08 04:54:47 +08:00
All new files in stdlib/@python2 are straight copies of the corresponding files in stdlib.
6 lines
172 B
Python
6 lines
172 B
Python
from typing import Union
|
|
|
|
def url2pathname(pathname: str) -> str: ...
|
|
def pathname2url(pathname: str) -> str: ...
|
|
def _pncomp2url(component: Union[str, bytes]) -> str: ...
|