Files
django-stubs/django-stubs/db/backends/oracle/utils.pyi
Marti Raudsepp 8f475fa0a6 Fill remaining missing hints with Any & disallow partial hints (#1206)
* Fill remaining missing hints with Any & disallow partial hints

* ModelFormatDict -> _ModelFormatDict

* Fixes

* Add __init__ return hints

* Add suppression
2022-10-31 14:33:59 +03:00

25 lines
577 B
Python

import datetime
from typing import Any
class InsertVar:
types: Any = ...
db_type: Any = ...
bound_param: Any = ...
def __init__(self, field: Any) -> None: ...
def bind_parameter(self, cursor: Any) -> Any: ...
def get_value(self) -> Any: ...
class Oracle_datetime(datetime.datetime):
input_size: Any = ...
@classmethod
def from_datetime(cls, dt: Any) -> Any: ...
class BulkInsertMapper:
BLOB: str = ...
CLOB: str = ...
DATE: str = ...
INTERVAL: str = ...
NUMBER: str = ...
TIMESTAMP: str = ...
types: Any = ...