mirror of
https://github.com/davidhalter/django-stubs.git
synced 2025-12-08 13:04:47 +08:00
14 lines
338 B
Python
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: ...
|