forked from bschnurr/python-type-stubs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbase.pyi
More file actions
60 lines (53 loc) · 1.48 KB
/
Copy pathbase.pyi
File metadata and controls
60 lines (53 loc) · 1.48 KB
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
from typing import Any
PASSIVE_NO_RESULT: Any = ...
ATTR_WAS_SET: Any = ...
ATTR_EMPTY: Any = ...
NO_VALUE: Any = ...
NEVER_SET: Any = ...
NO_CHANGE: Any = ...
CALLABLES_OK: Any = ...
SQL_OK: Any = ...
RELATED_OBJECT_OK: Any = ...
INIT_OK: Any = ...
NON_PERSISTENT_OK: Any = ...
LOAD_AGAINST_COMMITTED: Any = ...
NO_AUTOFLUSH: Any = ...
PASSIVE_OFF: Any = ...
PASSIVE_RETURN_NEVER_SET: Any = ...
PASSIVE_NO_INITIALIZE: Any = ...
PASSIVE_NO_FETCH: Any = ...
PASSIVE_NO_FETCH_RELATED: Any = ...
PASSIVE_ONLY_PERSISTENT: Any = ...
DEFAULT_MANAGER_ATTR: str = ...
DEFAULT_STATE_ATTR: str = ...
EXT_CONTINUE: Any = ...
EXT_STOP: Any = ...
ONETOMANY: Any = ...
MANYTOONE: Any = ...
MANYTOMANY: Any = ...
NOT_EXTENSION: Any = ...
def manager_of_class(cls): ...
instance_state: Any = ...
instance_dict: Any = ...
def instance_str(instance): ...
def state_str(state): ...
def state_class_str(state): ...
def attribute_str(instance, attribute): ...
def state_attribute_str(state, attribute): ...
def object_mapper(instance): ...
def object_state(instance): ...
def class_mapper(class_, configure: bool = ...): ...
class InspectionAttr(object):
is_selectable: bool = ...
is_aliased_class: bool = ...
is_instance: bool = ...
is_mapper: bool = ...
is_property: bool = ...
is_attribute: bool = ...
is_clause_element: bool = ...
extension_type: Any = ...
class InspectionAttrInfo(InspectionAttr):
@property
def info(self): ...
# used by interfaces.pyi
class _MappedAttribute(object): ...