-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy path_utils.pyi
More file actions
25 lines (20 loc) · 765 Bytes
/
_utils.pyi
File metadata and controls
25 lines (20 loc) · 765 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# File generated with docstub
import itertools
import re
from collections.abc import Callable, Hashable, Mapping, Sequence
from functools import lru_cache, wraps
from pathlib import Path
from typing import Any
from zlib import crc32
def accumulate_qualname(qualname: str, *, start_right: bool = ...) -> None: ...
def escape_qualname(name: str) -> str: ...
def _resolve_path_before_caching(func: Callable) -> Callable: ...
def module_name_from_path(path: Path) -> str: ...
def pyfile_checksum(path: Path) -> str: ...
def update_with_add_values(
*mappings: Mapping[Hashable, int | Sequence], out: dict | None = ...
) -> dict: ...
class DocstubError(Exception):
pass
_regex_digit: re.Pattern
def naive_natsort_key(item: Any) -> tuple[str | int, ...]: ...