Files
typeshed/stdlib/nturl2path.pyi
T
2025-05-14 15:40:39 +02:00

13 lines
400 B
Python

import sys
from typing_extensions import deprecated
if sys.version_info >= (3, 14):
@deprecated("nturl2path module was deprecated since Python 3.14")
def url2pathname(url: str) -> str: ...
@deprecated("nturl2path module was deprecated since Python 3.14")
def pathname2url(p: str) -> str: ...
else:
def url2pathname(url: str) -> str: ...
def pathname2url(p: str) -> str: ...