mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-05-04 20:45:49 +08:00
5e0d6ee95e
Co-authored-by: Alex Waygood <Alex.Waygood@Gmail.com>
13 lines
412 B
Python
13 lines
412 B
Python
import sys
|
|
from typing_extensions import deprecated
|
|
|
|
if sys.version_info >= (3, 14):
|
|
@deprecated("The `nturl2path` module is deprecated since Python 3.14.")
|
|
def url2pathname(url: str) -> str: ...
|
|
@deprecated("The `nturl2path` module is deprecated since Python 3.14.")
|
|
def pathname2url(p: str) -> str: ...
|
|
|
|
else:
|
|
def url2pathname(url: str) -> str: ...
|
|
def pathname2url(p: str) -> str: ...
|