mirror of
https://github.com/davidhalter/django-stubs.git
synced 2025-12-10 22:11:54 +08:00
11 lines
207 B
Python
11 lines
207 B
Python
from typing import Any
|
|
|
|
COMPILED_REGEX_TYPE: Any
|
|
|
|
class RegexObject:
|
|
pattern: str = ...
|
|
flags: int = ...
|
|
def __init__(self, obj: Any) -> None: ...
|
|
|
|
def get_migration_name_timestamp() -> str: ...
|