Files
django-stubs/django-stubs-generated/db/migrations/utils.pyi
2018-11-10 17:49:18 +03:00

14 lines
338 B
Python

from typing import Any, Optional
from django.utils.functional import SimpleLazyObject
COMPILED_REGEX_TYPE: Any
class RegexObject:
pattern: str = ...
flags: int = ...
def __init__(self, obj: SimpleLazyObject) -> None: ...
def __eq__(self, other: RegexObject) -> bool: ...
def get_migration_name_timestamp() -> str: ...