mirror of
https://github.com/davidhalter/django-stubs.git
synced 2025-12-07 04:34:29 +08:00
10 lines
242 B
Python
10 lines
242 B
Python
from os.path import abspath
|
|
from typing import Any, Optional, Union
|
|
|
|
abspathu = abspath
|
|
|
|
def upath(path: Any): ...
|
|
def npath(path: Any): ...
|
|
def safe_join(base: Union[bytes, str], *paths: Any) -> str: ...
|
|
def symlinks_supported() -> Any: ...
|