SQLAlchemy 2.0.36__cp313-cp313-win32.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- SQLAlchemy-2.0.36.dist-info/LICENSE +19 -0
- SQLAlchemy-2.0.36.dist-info/METADATA +243 -0
- SQLAlchemy-2.0.36.dist-info/RECORD +273 -0
- SQLAlchemy-2.0.36.dist-info/WHEEL +5 -0
- SQLAlchemy-2.0.36.dist-info/top_level.txt +1 -0
- sqlalchemy/__init__.py +294 -0
- sqlalchemy/connectors/__init__.py +18 -0
- sqlalchemy/connectors/aioodbc.py +174 -0
- sqlalchemy/connectors/asyncio.py +213 -0
- sqlalchemy/connectors/pyodbc.py +249 -0
- sqlalchemy/cyextension/__init__.py +6 -0
- sqlalchemy/cyextension/collections.cp313-win32.pyd +0 -0
- sqlalchemy/cyextension/collections.pyx +409 -0
- sqlalchemy/cyextension/immutabledict.cp313-win32.pyd +0 -0
- sqlalchemy/cyextension/immutabledict.pxd +8 -0
- sqlalchemy/cyextension/immutabledict.pyx +133 -0
- sqlalchemy/cyextension/processors.cp313-win32.pyd +0 -0
- sqlalchemy/cyextension/processors.pyx +68 -0
- sqlalchemy/cyextension/resultproxy.cp313-win32.pyd +0 -0
- sqlalchemy/cyextension/resultproxy.pyx +102 -0
- sqlalchemy/cyextension/util.cp313-win32.pyd +0 -0
- sqlalchemy/cyextension/util.pyx +91 -0
- sqlalchemy/dialects/__init__.py +61 -0
- sqlalchemy/dialects/_typing.py +25 -0
- sqlalchemy/dialects/mssql/__init__.py +88 -0
- sqlalchemy/dialects/mssql/aioodbc.py +64 -0
- sqlalchemy/dialects/mssql/base.py +4010 -0
- sqlalchemy/dialects/mssql/information_schema.py +254 -0
- sqlalchemy/dialects/mssql/json.py +133 -0
- sqlalchemy/dialects/mssql/provision.py +162 -0
- sqlalchemy/dialects/mssql/pymssql.py +126 -0
- sqlalchemy/dialects/mssql/pyodbc.py +745 -0
- sqlalchemy/dialects/mysql/__init__.py +101 -0
- sqlalchemy/dialects/mysql/aiomysql.py +333 -0
- sqlalchemy/dialects/mysql/asyncmy.py +337 -0
- sqlalchemy/dialects/mysql/base.py +3494 -0
- sqlalchemy/dialects/mysql/cymysql.py +84 -0
- sqlalchemy/dialects/mysql/dml.py +219 -0
- sqlalchemy/dialects/mysql/enumerated.py +244 -0
- sqlalchemy/dialects/mysql/expression.py +141 -0
- sqlalchemy/dialects/mysql/json.py +81 -0
- sqlalchemy/dialects/mysql/mariadb.py +32 -0
- sqlalchemy/dialects/mysql/mariadbconnector.py +277 -0
- sqlalchemy/dialects/mysql/mysqlconnector.py +180 -0
- sqlalchemy/dialects/mysql/mysqldb.py +303 -0
- sqlalchemy/dialects/mysql/provision.py +110 -0
- sqlalchemy/dialects/mysql/pymysql.py +137 -0
- sqlalchemy/dialects/mysql/pyodbc.py +138 -0
- sqlalchemy/dialects/mysql/reflection.py +677 -0
- sqlalchemy/dialects/mysql/reserved_words.py +571 -0
- sqlalchemy/dialects/mysql/types.py +774 -0
- sqlalchemy/dialects/oracle/__init__.py +67 -0
- sqlalchemy/dialects/oracle/base.py +3271 -0
- sqlalchemy/dialects/oracle/cx_oracle.py +1483 -0
- sqlalchemy/dialects/oracle/dictionary.py +507 -0
- sqlalchemy/dialects/oracle/oracledb.py +431 -0
- sqlalchemy/dialects/oracle/provision.py +220 -0
- sqlalchemy/dialects/oracle/types.py +287 -0
- sqlalchemy/dialects/postgresql/__init__.py +167 -0
- sqlalchemy/dialects/postgresql/_psycopg_common.py +187 -0
- sqlalchemy/dialects/postgresql/array.py +425 -0
- sqlalchemy/dialects/postgresql/asyncpg.py +1274 -0
- sqlalchemy/dialects/postgresql/base.py +5008 -0
- sqlalchemy/dialects/postgresql/dml.py +310 -0
- sqlalchemy/dialects/postgresql/ext.py +496 -0
- sqlalchemy/dialects/postgresql/hstore.py +397 -0
- sqlalchemy/dialects/postgresql/json.py +333 -0
- sqlalchemy/dialects/postgresql/named_types.py +509 -0
- sqlalchemy/dialects/postgresql/operators.py +129 -0
- sqlalchemy/dialects/postgresql/pg8000.py +662 -0
- sqlalchemy/dialects/postgresql/pg_catalog.py +300 -0
- sqlalchemy/dialects/postgresql/provision.py +175 -0
- sqlalchemy/dialects/postgresql/psycopg.py +772 -0
- sqlalchemy/dialects/postgresql/psycopg2.py +886 -0
- sqlalchemy/dialects/postgresql/psycopg2cffi.py +61 -0
- sqlalchemy/dialects/postgresql/ranges.py +1029 -0
- sqlalchemy/dialects/postgresql/types.py +303 -0
- sqlalchemy/dialects/sqlite/__init__.py +57 -0
- sqlalchemy/dialects/sqlite/aiosqlite.py +396 -0
- sqlalchemy/dialects/sqlite/base.py +2805 -0
- sqlalchemy/dialects/sqlite/dml.py +240 -0
- sqlalchemy/dialects/sqlite/json.py +92 -0
- sqlalchemy/dialects/sqlite/provision.py +198 -0
- sqlalchemy/dialects/sqlite/pysqlcipher.py +155 -0
- sqlalchemy/dialects/sqlite/pysqlite.py +756 -0
- sqlalchemy/dialects/type_migration_guidelines.txt +145 -0
- sqlalchemy/engine/__init__.py +62 -0
- sqlalchemy/engine/_py_processors.py +136 -0
- sqlalchemy/engine/_py_row.py +128 -0
- sqlalchemy/engine/_py_util.py +74 -0
- sqlalchemy/engine/base.py +3375 -0
- sqlalchemy/engine/characteristics.py +155 -0
- sqlalchemy/engine/create.py +875 -0
- sqlalchemy/engine/cursor.py +2181 -0
- sqlalchemy/engine/default.py +2365 -0
- sqlalchemy/engine/events.py +951 -0
- sqlalchemy/engine/interfaces.py +3403 -0
- sqlalchemy/engine/mock.py +131 -0
- sqlalchemy/engine/processors.py +61 -0
- sqlalchemy/engine/reflection.py +2098 -0
- sqlalchemy/engine/result.py +2382 -0
- sqlalchemy/engine/row.py +401 -0
- sqlalchemy/engine/strategies.py +19 -0
- sqlalchemy/engine/url.py +910 -0
- sqlalchemy/engine/util.py +167 -0
- sqlalchemy/event/__init__.py +25 -0
- sqlalchemy/event/api.py +225 -0
- sqlalchemy/event/attr.py +655 -0
- sqlalchemy/event/base.py +470 -0
- sqlalchemy/event/legacy.py +246 -0
- sqlalchemy/event/registry.py +386 -0
- sqlalchemy/events.py +17 -0
- sqlalchemy/exc.py +830 -0
- sqlalchemy/ext/__init__.py +11 -0
- sqlalchemy/ext/associationproxy.py +2013 -0
- sqlalchemy/ext/asyncio/__init__.py +25 -0
- sqlalchemy/ext/asyncio/base.py +279 -0
- sqlalchemy/ext/asyncio/engine.py +1466 -0
- sqlalchemy/ext/asyncio/exc.py +21 -0
- sqlalchemy/ext/asyncio/result.py +961 -0
- sqlalchemy/ext/asyncio/scoping.py +1614 -0
- sqlalchemy/ext/asyncio/session.py +1936 -0
- sqlalchemy/ext/automap.py +1691 -0
- sqlalchemy/ext/baked.py +574 -0
- sqlalchemy/ext/compiler.py +570 -0
- sqlalchemy/ext/declarative/__init__.py +65 -0
- sqlalchemy/ext/declarative/extensions.py +548 -0
- sqlalchemy/ext/horizontal_shard.py +481 -0
- sqlalchemy/ext/hybrid.py +1514 -0
- sqlalchemy/ext/indexable.py +341 -0
- sqlalchemy/ext/instrumentation.py +450 -0
- sqlalchemy/ext/mutable.py +1073 -0
- sqlalchemy/ext/mypy/__init__.py +6 -0
- sqlalchemy/ext/mypy/apply.py +320 -0
- sqlalchemy/ext/mypy/decl_class.py +515 -0
- sqlalchemy/ext/mypy/infer.py +590 -0
- sqlalchemy/ext/mypy/names.py +335 -0
- sqlalchemy/ext/mypy/plugin.py +303 -0
- sqlalchemy/ext/mypy/util.py +357 -0
- sqlalchemy/ext/orderinglist.py +416 -0
- sqlalchemy/ext/serializer.py +181 -0
- sqlalchemy/future/__init__.py +16 -0
- sqlalchemy/future/engine.py +15 -0
- sqlalchemy/inspection.py +174 -0
- sqlalchemy/log.py +288 -0
- sqlalchemy/orm/__init__.py +170 -0
- sqlalchemy/orm/_orm_constructors.py +2571 -0
- sqlalchemy/orm/_typing.py +179 -0
- sqlalchemy/orm/attributes.py +2835 -0
- sqlalchemy/orm/base.py +973 -0
- sqlalchemy/orm/bulk_persistence.py +2123 -0
- sqlalchemy/orm/clsregistry.py +571 -0
- sqlalchemy/orm/collections.py +1620 -0
- sqlalchemy/orm/context.py +3268 -0
- sqlalchemy/orm/decl_api.py +1883 -0
- sqlalchemy/orm/decl_base.py +2190 -0
- sqlalchemy/orm/dependency.py +1304 -0
- sqlalchemy/orm/descriptor_props.py +1076 -0
- sqlalchemy/orm/dynamic.py +300 -0
- sqlalchemy/orm/evaluator.py +379 -0
- sqlalchemy/orm/events.py +3261 -0
- sqlalchemy/orm/exc.py +228 -0
- sqlalchemy/orm/identity.py +302 -0
- sqlalchemy/orm/instrumentation.py +754 -0
- sqlalchemy/orm/interfaces.py +1474 -0
- sqlalchemy/orm/loading.py +1682 -0
- sqlalchemy/orm/mapped_collection.py +557 -0
- sqlalchemy/orm/mapper.py +4432 -0
- sqlalchemy/orm/path_registry.py +811 -0
- sqlalchemy/orm/persistence.py +1782 -0
- sqlalchemy/orm/properties.py +886 -0
- sqlalchemy/orm/query.py +3396 -0
- sqlalchemy/orm/relationships.py +3500 -0
- sqlalchemy/orm/scoping.py +2165 -0
- sqlalchemy/orm/session.py +5301 -0
- sqlalchemy/orm/state.py +1143 -0
- sqlalchemy/orm/state_changes.py +198 -0
- sqlalchemy/orm/strategies.py +3473 -0
- sqlalchemy/orm/strategy_options.py +2569 -0
- sqlalchemy/orm/sync.py +164 -0
- sqlalchemy/orm/unitofwork.py +796 -0
- sqlalchemy/orm/util.py +2424 -0
- sqlalchemy/orm/writeonly.py +678 -0
- sqlalchemy/pool/__init__.py +44 -0
- sqlalchemy/pool/base.py +1515 -0
- sqlalchemy/pool/events.py +370 -0
- sqlalchemy/pool/impl.py +581 -0
- sqlalchemy/py.typed +0 -0
- sqlalchemy/schema.py +70 -0
- sqlalchemy/sql/__init__.py +145 -0
- sqlalchemy/sql/_dml_constructors.py +140 -0
- sqlalchemy/sql/_elements_constructors.py +1850 -0
- sqlalchemy/sql/_orm_types.py +20 -0
- sqlalchemy/sql/_py_util.py +75 -0
- sqlalchemy/sql/_selectable_constructors.py +635 -0
- sqlalchemy/sql/_typing.py +460 -0
- sqlalchemy/sql/annotation.py +585 -0
- sqlalchemy/sql/base.py +2185 -0
- sqlalchemy/sql/cache_key.py +1057 -0
- sqlalchemy/sql/coercions.py +1405 -0
- sqlalchemy/sql/compiler.py +7818 -0
- sqlalchemy/sql/crud.py +1669 -0
- sqlalchemy/sql/ddl.py +1378 -0
- sqlalchemy/sql/default_comparator.py +552 -0
- sqlalchemy/sql/dml.py +1817 -0
- sqlalchemy/sql/elements.py +5499 -0
- sqlalchemy/sql/events.py +455 -0
- sqlalchemy/sql/expression.py +162 -0
- sqlalchemy/sql/functions.py +2055 -0
- sqlalchemy/sql/lambdas.py +1449 -0
- sqlalchemy/sql/naming.py +212 -0
- sqlalchemy/sql/operators.py +2579 -0
- sqlalchemy/sql/roles.py +323 -0
- sqlalchemy/sql/schema.py +6158 -0
- sqlalchemy/sql/selectable.py +7004 -0
- sqlalchemy/sql/sqltypes.py +3827 -0
- sqlalchemy/sql/traversals.py +1024 -0
- sqlalchemy/sql/type_api.py +2339 -0
- sqlalchemy/sql/util.py +1486 -0
- sqlalchemy/sql/visitors.py +1165 -0
- sqlalchemy/testing/__init__.py +96 -0
- sqlalchemy/testing/assertions.py +989 -0
- sqlalchemy/testing/assertsql.py +516 -0
- sqlalchemy/testing/asyncio.py +135 -0
- sqlalchemy/testing/config.py +427 -0
- sqlalchemy/testing/engines.py +472 -0
- sqlalchemy/testing/entities.py +117 -0
- sqlalchemy/testing/exclusions.py +435 -0
- sqlalchemy/testing/fixtures/__init__.py +28 -0
- sqlalchemy/testing/fixtures/base.py +366 -0
- sqlalchemy/testing/fixtures/mypy.py +312 -0
- sqlalchemy/testing/fixtures/orm.py +227 -0
- sqlalchemy/testing/fixtures/sql.py +503 -0
- sqlalchemy/testing/pickleable.py +155 -0
- sqlalchemy/testing/plugin/__init__.py +6 -0
- sqlalchemy/testing/plugin/bootstrap.py +51 -0
- sqlalchemy/testing/plugin/plugin_base.py +779 -0
- sqlalchemy/testing/plugin/pytestplugin.py +868 -0
- sqlalchemy/testing/profiling.py +324 -0
- sqlalchemy/testing/provision.py +496 -0
- sqlalchemy/testing/requirements.py +1818 -0
- sqlalchemy/testing/schema.py +224 -0
- sqlalchemy/testing/suite/__init__.py +19 -0
- sqlalchemy/testing/suite/test_cte.py +211 -0
- sqlalchemy/testing/suite/test_ddl.py +389 -0
- sqlalchemy/testing/suite/test_deprecations.py +153 -0
- sqlalchemy/testing/suite/test_dialect.py +740 -0
- sqlalchemy/testing/suite/test_insert.py +630 -0
- sqlalchemy/testing/suite/test_reflection.py +3225 -0
- sqlalchemy/testing/suite/test_results.py +502 -0
- sqlalchemy/testing/suite/test_rowcount.py +258 -0
- sqlalchemy/testing/suite/test_select.py +1999 -0
- sqlalchemy/testing/suite/test_sequence.py +317 -0
- sqlalchemy/testing/suite/test_types.py +2141 -0
- sqlalchemy/testing/suite/test_unicode_ddl.py +189 -0
- sqlalchemy/testing/suite/test_update_delete.py +139 -0
- sqlalchemy/testing/util.py +537 -0
- sqlalchemy/testing/warnings.py +52 -0
- sqlalchemy/types.py +76 -0
- sqlalchemy/util/__init__.py +160 -0
- sqlalchemy/util/_collections.py +715 -0
- sqlalchemy/util/_concurrency_py3k.py +288 -0
- sqlalchemy/util/_has_cy.py +40 -0
- sqlalchemy/util/_py_collections.py +541 -0
- sqlalchemy/util/compat.py +301 -0
- sqlalchemy/util/concurrency.py +108 -0
- sqlalchemy/util/deprecations.py +401 -0
- sqlalchemy/util/langhelpers.py +2218 -0
- sqlalchemy/util/preloaded.py +150 -0
- sqlalchemy/util/queue.py +322 -0
- sqlalchemy/util/tool_support.py +201 -0
- sqlalchemy/util/topological.py +120 -0
- sqlalchemy/util/typing.py +629 -0
|
@@ -0,0 +1,249 @@
|
|
|
1
|
+
# connectors/pyodbc.py
|
|
2
|
+
# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
|
|
3
|
+
# <see AUTHORS file>
|
|
4
|
+
#
|
|
5
|
+
# This module is part of SQLAlchemy and is released under
|
|
6
|
+
# the MIT License: https://www.opensource.org/licenses/mit-license.php
|
|
7
|
+
|
|
8
|
+
from __future__ import annotations
|
|
9
|
+
|
|
10
|
+
import re
|
|
11
|
+
from types import ModuleType
|
|
12
|
+
import typing
|
|
13
|
+
from typing import Any
|
|
14
|
+
from typing import Dict
|
|
15
|
+
from typing import List
|
|
16
|
+
from typing import Optional
|
|
17
|
+
from typing import Tuple
|
|
18
|
+
from typing import Union
|
|
19
|
+
from urllib.parse import unquote_plus
|
|
20
|
+
|
|
21
|
+
from . import Connector
|
|
22
|
+
from .. import ExecutionContext
|
|
23
|
+
from .. import pool
|
|
24
|
+
from .. import util
|
|
25
|
+
from ..engine import ConnectArgsType
|
|
26
|
+
from ..engine import Connection
|
|
27
|
+
from ..engine import interfaces
|
|
28
|
+
from ..engine import URL
|
|
29
|
+
from ..sql.type_api import TypeEngine
|
|
30
|
+
|
|
31
|
+
if typing.TYPE_CHECKING:
|
|
32
|
+
from ..engine.interfaces import IsolationLevel
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
class PyODBCConnector(Connector):
|
|
36
|
+
driver = "pyodbc"
|
|
37
|
+
|
|
38
|
+
# this is no longer False for pyodbc in general
|
|
39
|
+
supports_sane_rowcount_returning = True
|
|
40
|
+
supports_sane_multi_rowcount = False
|
|
41
|
+
|
|
42
|
+
supports_native_decimal = True
|
|
43
|
+
default_paramstyle = "named"
|
|
44
|
+
|
|
45
|
+
fast_executemany = False
|
|
46
|
+
|
|
47
|
+
# for non-DSN connections, this *may* be used to
|
|
48
|
+
# hold the desired driver name
|
|
49
|
+
pyodbc_driver_name: Optional[str] = None
|
|
50
|
+
|
|
51
|
+
dbapi: ModuleType
|
|
52
|
+
|
|
53
|
+
def __init__(self, use_setinputsizes: bool = False, **kw: Any):
|
|
54
|
+
super().__init__(**kw)
|
|
55
|
+
if use_setinputsizes:
|
|
56
|
+
self.bind_typing = interfaces.BindTyping.SETINPUTSIZES
|
|
57
|
+
|
|
58
|
+
@classmethod
|
|
59
|
+
def import_dbapi(cls) -> ModuleType:
|
|
60
|
+
return __import__("pyodbc")
|
|
61
|
+
|
|
62
|
+
def create_connect_args(self, url: URL) -> ConnectArgsType:
|
|
63
|
+
opts = url.translate_connect_args(username="user")
|
|
64
|
+
opts.update(url.query)
|
|
65
|
+
|
|
66
|
+
keys = opts
|
|
67
|
+
|
|
68
|
+
query = url.query
|
|
69
|
+
|
|
70
|
+
connect_args: Dict[str, Any] = {}
|
|
71
|
+
connectors: List[str]
|
|
72
|
+
|
|
73
|
+
for param in ("ansi", "unicode_results", "autocommit"):
|
|
74
|
+
if param in keys:
|
|
75
|
+
connect_args[param] = util.asbool(keys.pop(param))
|
|
76
|
+
|
|
77
|
+
if "odbc_connect" in keys:
|
|
78
|
+
connectors = [unquote_plus(keys.pop("odbc_connect"))]
|
|
79
|
+
else:
|
|
80
|
+
|
|
81
|
+
def check_quote(token: str) -> str:
|
|
82
|
+
if ";" in str(token) or str(token).startswith("{"):
|
|
83
|
+
token = "{%s}" % token.replace("}", "}}")
|
|
84
|
+
return token
|
|
85
|
+
|
|
86
|
+
keys = {k: check_quote(v) for k, v in keys.items()}
|
|
87
|
+
|
|
88
|
+
dsn_connection = "dsn" in keys or (
|
|
89
|
+
"host" in keys and "database" not in keys
|
|
90
|
+
)
|
|
91
|
+
if dsn_connection:
|
|
92
|
+
connectors = [
|
|
93
|
+
"dsn=%s" % (keys.pop("host", "") or keys.pop("dsn", ""))
|
|
94
|
+
]
|
|
95
|
+
else:
|
|
96
|
+
port = ""
|
|
97
|
+
if "port" in keys and "port" not in query:
|
|
98
|
+
port = ",%d" % int(keys.pop("port"))
|
|
99
|
+
|
|
100
|
+
connectors = []
|
|
101
|
+
driver = keys.pop("driver", self.pyodbc_driver_name)
|
|
102
|
+
if driver is None and keys:
|
|
103
|
+
# note if keys is empty, this is a totally blank URL
|
|
104
|
+
util.warn(
|
|
105
|
+
"No driver name specified; "
|
|
106
|
+
"this is expected by PyODBC when using "
|
|
107
|
+
"DSN-less connections"
|
|
108
|
+
)
|
|
109
|
+
else:
|
|
110
|
+
connectors.append("DRIVER={%s}" % driver)
|
|
111
|
+
|
|
112
|
+
connectors.extend(
|
|
113
|
+
[
|
|
114
|
+
"Server=%s%s" % (keys.pop("host", ""), port),
|
|
115
|
+
"Database=%s" % keys.pop("database", ""),
|
|
116
|
+
]
|
|
117
|
+
)
|
|
118
|
+
|
|
119
|
+
user = keys.pop("user", None)
|
|
120
|
+
if user:
|
|
121
|
+
connectors.append("UID=%s" % user)
|
|
122
|
+
pwd = keys.pop("password", "")
|
|
123
|
+
if pwd:
|
|
124
|
+
connectors.append("PWD=%s" % pwd)
|
|
125
|
+
else:
|
|
126
|
+
authentication = keys.pop("authentication", None)
|
|
127
|
+
if authentication:
|
|
128
|
+
connectors.append("Authentication=%s" % authentication)
|
|
129
|
+
else:
|
|
130
|
+
connectors.append("Trusted_Connection=Yes")
|
|
131
|
+
|
|
132
|
+
# if set to 'Yes', the ODBC layer will try to automagically
|
|
133
|
+
# convert textual data from your database encoding to your
|
|
134
|
+
# client encoding. This should obviously be set to 'No' if
|
|
135
|
+
# you query a cp1253 encoded database from a latin1 client...
|
|
136
|
+
if "odbc_autotranslate" in keys:
|
|
137
|
+
connectors.append(
|
|
138
|
+
"AutoTranslate=%s" % keys.pop("odbc_autotranslate")
|
|
139
|
+
)
|
|
140
|
+
|
|
141
|
+
connectors.extend(["%s=%s" % (k, v) for k, v in keys.items()])
|
|
142
|
+
|
|
143
|
+
return ((";".join(connectors),), connect_args)
|
|
144
|
+
|
|
145
|
+
def is_disconnect(
|
|
146
|
+
self,
|
|
147
|
+
e: Exception,
|
|
148
|
+
connection: Optional[
|
|
149
|
+
Union[pool.PoolProxiedConnection, interfaces.DBAPIConnection]
|
|
150
|
+
],
|
|
151
|
+
cursor: Optional[interfaces.DBAPICursor],
|
|
152
|
+
) -> bool:
|
|
153
|
+
if isinstance(e, self.dbapi.ProgrammingError):
|
|
154
|
+
return "The cursor's connection has been closed." in str(
|
|
155
|
+
e
|
|
156
|
+
) or "Attempt to use a closed connection." in str(e)
|
|
157
|
+
else:
|
|
158
|
+
return False
|
|
159
|
+
|
|
160
|
+
def _dbapi_version(self) -> interfaces.VersionInfoType:
|
|
161
|
+
if not self.dbapi:
|
|
162
|
+
return ()
|
|
163
|
+
return self._parse_dbapi_version(self.dbapi.version)
|
|
164
|
+
|
|
165
|
+
def _parse_dbapi_version(self, vers: str) -> interfaces.VersionInfoType:
|
|
166
|
+
m = re.match(r"(?:py.*-)?([\d\.]+)(?:-(\w+))?", vers)
|
|
167
|
+
if not m:
|
|
168
|
+
return ()
|
|
169
|
+
vers_tuple: interfaces.VersionInfoType = tuple(
|
|
170
|
+
[int(x) for x in m.group(1).split(".")]
|
|
171
|
+
)
|
|
172
|
+
if m.group(2):
|
|
173
|
+
vers_tuple += (m.group(2),)
|
|
174
|
+
return vers_tuple
|
|
175
|
+
|
|
176
|
+
def _get_server_version_info(
|
|
177
|
+
self, connection: Connection
|
|
178
|
+
) -> interfaces.VersionInfoType:
|
|
179
|
+
# NOTE: this function is not reliable, particularly when
|
|
180
|
+
# freetds is in use. Implement database-specific server version
|
|
181
|
+
# queries.
|
|
182
|
+
dbapi_con = connection.connection.dbapi_connection
|
|
183
|
+
version: Tuple[Union[int, str], ...] = ()
|
|
184
|
+
r = re.compile(r"[.\-]")
|
|
185
|
+
for n in r.split(dbapi_con.getinfo(self.dbapi.SQL_DBMS_VER)): # type: ignore[union-attr] # noqa: E501
|
|
186
|
+
try:
|
|
187
|
+
version += (int(n),)
|
|
188
|
+
except ValueError:
|
|
189
|
+
pass
|
|
190
|
+
return tuple(version)
|
|
191
|
+
|
|
192
|
+
def do_set_input_sizes(
|
|
193
|
+
self,
|
|
194
|
+
cursor: interfaces.DBAPICursor,
|
|
195
|
+
list_of_tuples: List[Tuple[str, Any, TypeEngine[Any]]],
|
|
196
|
+
context: ExecutionContext,
|
|
197
|
+
) -> None:
|
|
198
|
+
# the rules for these types seems a little strange, as you can pass
|
|
199
|
+
# non-tuples as well as tuples, however it seems to assume "0"
|
|
200
|
+
# for the subsequent values if you don't pass a tuple which fails
|
|
201
|
+
# for types such as pyodbc.SQL_WLONGVARCHAR, which is the datatype
|
|
202
|
+
# that ticket #5649 is targeting.
|
|
203
|
+
|
|
204
|
+
# NOTE: as of #6058, this won't be called if the use_setinputsizes
|
|
205
|
+
# parameter were not passed to the dialect, or if no types were
|
|
206
|
+
# specified in list_of_tuples
|
|
207
|
+
|
|
208
|
+
# as of #8177 for 2.0 we assume use_setinputsizes=True and only
|
|
209
|
+
# omit the setinputsizes calls for .executemany() with
|
|
210
|
+
# fast_executemany=True
|
|
211
|
+
|
|
212
|
+
if (
|
|
213
|
+
context.execute_style is interfaces.ExecuteStyle.EXECUTEMANY
|
|
214
|
+
and self.fast_executemany
|
|
215
|
+
):
|
|
216
|
+
return
|
|
217
|
+
|
|
218
|
+
cursor.setinputsizes(
|
|
219
|
+
[
|
|
220
|
+
(
|
|
221
|
+
(dbtype, None, None)
|
|
222
|
+
if not isinstance(dbtype, tuple)
|
|
223
|
+
else dbtype
|
|
224
|
+
)
|
|
225
|
+
for key, dbtype, sqltype in list_of_tuples
|
|
226
|
+
]
|
|
227
|
+
)
|
|
228
|
+
|
|
229
|
+
def get_isolation_level_values(
|
|
230
|
+
self, dbapi_connection: interfaces.DBAPIConnection
|
|
231
|
+
) -> List[IsolationLevel]:
|
|
232
|
+
return super().get_isolation_level_values(dbapi_connection) + [
|
|
233
|
+
"AUTOCOMMIT"
|
|
234
|
+
]
|
|
235
|
+
|
|
236
|
+
def set_isolation_level(
|
|
237
|
+
self,
|
|
238
|
+
dbapi_connection: interfaces.DBAPIConnection,
|
|
239
|
+
level: IsolationLevel,
|
|
240
|
+
) -> None:
|
|
241
|
+
# adjust for ConnectionFairy being present
|
|
242
|
+
# allows attribute set e.g. "connection.autocommit = True"
|
|
243
|
+
# to work properly
|
|
244
|
+
|
|
245
|
+
if level == "AUTOCOMMIT":
|
|
246
|
+
dbapi_connection.autocommit = True
|
|
247
|
+
else:
|
|
248
|
+
dbapi_connection.autocommit = False
|
|
249
|
+
super().set_isolation_level(dbapi_connection, level)
|
|
Binary file
|
|
@@ -0,0 +1,409 @@
|
|
|
1
|
+
# cyextension/collections.pyx
|
|
2
|
+
# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
|
|
3
|
+
# <see AUTHORS file>
|
|
4
|
+
#
|
|
5
|
+
# This module is part of SQLAlchemy and is released under
|
|
6
|
+
# the MIT License: https://www.opensource.org/licenses/mit-license.php
|
|
7
|
+
cimport cython
|
|
8
|
+
from cpython.long cimport PyLong_FromLongLong
|
|
9
|
+
from cpython.set cimport PySet_Add
|
|
10
|
+
|
|
11
|
+
from collections.abc import Collection
|
|
12
|
+
from itertools import filterfalse
|
|
13
|
+
|
|
14
|
+
cdef bint add_not_present(set seen, object item, hashfunc):
|
|
15
|
+
hash_value = hashfunc(item)
|
|
16
|
+
if hash_value not in seen:
|
|
17
|
+
PySet_Add(seen, hash_value)
|
|
18
|
+
return True
|
|
19
|
+
else:
|
|
20
|
+
return False
|
|
21
|
+
|
|
22
|
+
cdef list cunique_list(seq, hashfunc=None):
|
|
23
|
+
cdef set seen = set()
|
|
24
|
+
if not hashfunc:
|
|
25
|
+
return [x for x in seq if x not in seen and not PySet_Add(seen, x)]
|
|
26
|
+
else:
|
|
27
|
+
return [x for x in seq if add_not_present(seen, x, hashfunc)]
|
|
28
|
+
|
|
29
|
+
def unique_list(seq, hashfunc=None):
|
|
30
|
+
return cunique_list(seq, hashfunc)
|
|
31
|
+
|
|
32
|
+
cdef class OrderedSet(set):
|
|
33
|
+
|
|
34
|
+
cdef list _list
|
|
35
|
+
|
|
36
|
+
@classmethod
|
|
37
|
+
def __class_getitem__(cls, key):
|
|
38
|
+
return cls
|
|
39
|
+
|
|
40
|
+
def __init__(self, d=None):
|
|
41
|
+
set.__init__(self)
|
|
42
|
+
if d is not None:
|
|
43
|
+
self._list = cunique_list(d)
|
|
44
|
+
set.update(self, self._list)
|
|
45
|
+
else:
|
|
46
|
+
self._list = []
|
|
47
|
+
|
|
48
|
+
cpdef OrderedSet copy(self):
|
|
49
|
+
cdef OrderedSet cp = OrderedSet.__new__(OrderedSet)
|
|
50
|
+
cp._list = list(self._list)
|
|
51
|
+
set.update(cp, cp._list)
|
|
52
|
+
return cp
|
|
53
|
+
|
|
54
|
+
@cython.final
|
|
55
|
+
cdef OrderedSet _from_list(self, list new_list):
|
|
56
|
+
cdef OrderedSet new = OrderedSet.__new__(OrderedSet)
|
|
57
|
+
new._list = new_list
|
|
58
|
+
set.update(new, new_list)
|
|
59
|
+
return new
|
|
60
|
+
|
|
61
|
+
def add(self, element):
|
|
62
|
+
if element not in self:
|
|
63
|
+
self._list.append(element)
|
|
64
|
+
PySet_Add(self, element)
|
|
65
|
+
|
|
66
|
+
def remove(self, element):
|
|
67
|
+
# set.remove will raise if element is not in self
|
|
68
|
+
set.remove(self, element)
|
|
69
|
+
self._list.remove(element)
|
|
70
|
+
|
|
71
|
+
def pop(self):
|
|
72
|
+
try:
|
|
73
|
+
value = self._list.pop()
|
|
74
|
+
except IndexError:
|
|
75
|
+
raise KeyError("pop from an empty set") from None
|
|
76
|
+
set.remove(self, value)
|
|
77
|
+
return value
|
|
78
|
+
|
|
79
|
+
def insert(self, Py_ssize_t pos, element):
|
|
80
|
+
if element not in self:
|
|
81
|
+
self._list.insert(pos, element)
|
|
82
|
+
PySet_Add(self, element)
|
|
83
|
+
|
|
84
|
+
def discard(self, element):
|
|
85
|
+
if element in self:
|
|
86
|
+
set.remove(self, element)
|
|
87
|
+
self._list.remove(element)
|
|
88
|
+
|
|
89
|
+
def clear(self):
|
|
90
|
+
set.clear(self)
|
|
91
|
+
self._list = []
|
|
92
|
+
|
|
93
|
+
def __getitem__(self, key):
|
|
94
|
+
return self._list[key]
|
|
95
|
+
|
|
96
|
+
def __iter__(self):
|
|
97
|
+
return iter(self._list)
|
|
98
|
+
|
|
99
|
+
def __add__(self, other):
|
|
100
|
+
return self.union(other)
|
|
101
|
+
|
|
102
|
+
def __repr__(self):
|
|
103
|
+
return "%s(%r)" % (self.__class__.__name__, self._list)
|
|
104
|
+
|
|
105
|
+
__str__ = __repr__
|
|
106
|
+
|
|
107
|
+
def update(self, *iterables):
|
|
108
|
+
for iterable in iterables:
|
|
109
|
+
for e in iterable:
|
|
110
|
+
if e not in self:
|
|
111
|
+
self._list.append(e)
|
|
112
|
+
set.add(self, e)
|
|
113
|
+
|
|
114
|
+
def __ior__(self, iterable):
|
|
115
|
+
self.update(iterable)
|
|
116
|
+
return self
|
|
117
|
+
|
|
118
|
+
def union(self, *other):
|
|
119
|
+
result = self.copy()
|
|
120
|
+
result.update(*other)
|
|
121
|
+
return result
|
|
122
|
+
|
|
123
|
+
def __or__(self, other):
|
|
124
|
+
return self.union(other)
|
|
125
|
+
|
|
126
|
+
def intersection(self, *other):
|
|
127
|
+
cdef set other_set = set.intersection(self, *other)
|
|
128
|
+
return self._from_list([a for a in self._list if a in other_set])
|
|
129
|
+
|
|
130
|
+
def __and__(self, other):
|
|
131
|
+
return self.intersection(other)
|
|
132
|
+
|
|
133
|
+
def symmetric_difference(self, other):
|
|
134
|
+
cdef set other_set
|
|
135
|
+
if isinstance(other, set):
|
|
136
|
+
other_set = <set> other
|
|
137
|
+
collection = other_set
|
|
138
|
+
elif isinstance(other, Collection):
|
|
139
|
+
collection = other
|
|
140
|
+
other_set = set(other)
|
|
141
|
+
else:
|
|
142
|
+
collection = list(other)
|
|
143
|
+
other_set = set(collection)
|
|
144
|
+
result = self._from_list([a for a in self._list if a not in other_set])
|
|
145
|
+
result.update(a for a in collection if a not in self)
|
|
146
|
+
return result
|
|
147
|
+
|
|
148
|
+
def __xor__(self, other):
|
|
149
|
+
return self.symmetric_difference(other)
|
|
150
|
+
|
|
151
|
+
def difference(self, *other):
|
|
152
|
+
cdef set other_set = set.difference(self, *other)
|
|
153
|
+
return self._from_list([a for a in self._list if a in other_set])
|
|
154
|
+
|
|
155
|
+
def __sub__(self, other):
|
|
156
|
+
return self.difference(other)
|
|
157
|
+
|
|
158
|
+
def intersection_update(self, *other):
|
|
159
|
+
set.intersection_update(self, *other)
|
|
160
|
+
self._list = [a for a in self._list if a in self]
|
|
161
|
+
|
|
162
|
+
def __iand__(self, other):
|
|
163
|
+
self.intersection_update(other)
|
|
164
|
+
return self
|
|
165
|
+
|
|
166
|
+
cpdef symmetric_difference_update(self, other):
|
|
167
|
+
collection = other if isinstance(other, Collection) else list(other)
|
|
168
|
+
set.symmetric_difference_update(self, collection)
|
|
169
|
+
self._list = [a for a in self._list if a in self]
|
|
170
|
+
self._list += [a for a in collection if a in self]
|
|
171
|
+
|
|
172
|
+
def __ixor__(self, other):
|
|
173
|
+
self.symmetric_difference_update(other)
|
|
174
|
+
return self
|
|
175
|
+
|
|
176
|
+
def difference_update(self, *other):
|
|
177
|
+
set.difference_update(self, *other)
|
|
178
|
+
self._list = [a for a in self._list if a in self]
|
|
179
|
+
|
|
180
|
+
def __isub__(self, other):
|
|
181
|
+
self.difference_update(other)
|
|
182
|
+
return self
|
|
183
|
+
|
|
184
|
+
cdef object cy_id(object item):
|
|
185
|
+
return PyLong_FromLongLong(<long long> (<void *>item))
|
|
186
|
+
|
|
187
|
+
# NOTE: cython 0.x will call __add__, __sub__, etc with the parameter swapped
|
|
188
|
+
# instead of the __rmeth__, so they need to check that also self is of the
|
|
189
|
+
# correct type. This is fixed in cython 3.x. See:
|
|
190
|
+
# https://docs.cython.org/en/latest/src/userguide/special_methods.html#arithmetic-methods
|
|
191
|
+
cdef class IdentitySet:
|
|
192
|
+
"""A set that considers only object id() for uniqueness.
|
|
193
|
+
|
|
194
|
+
This strategy has edge cases for builtin types- it's possible to have
|
|
195
|
+
two 'foo' strings in one of these sets, for example. Use sparingly.
|
|
196
|
+
|
|
197
|
+
"""
|
|
198
|
+
|
|
199
|
+
cdef dict _members
|
|
200
|
+
|
|
201
|
+
def __init__(self, iterable=None):
|
|
202
|
+
self._members = {}
|
|
203
|
+
if iterable:
|
|
204
|
+
self.update(iterable)
|
|
205
|
+
|
|
206
|
+
def add(self, value):
|
|
207
|
+
self._members[cy_id(value)] = value
|
|
208
|
+
|
|
209
|
+
def __contains__(self, value):
|
|
210
|
+
return cy_id(value) in self._members
|
|
211
|
+
|
|
212
|
+
cpdef remove(self, value):
|
|
213
|
+
del self._members[cy_id(value)]
|
|
214
|
+
|
|
215
|
+
def discard(self, value):
|
|
216
|
+
try:
|
|
217
|
+
self.remove(value)
|
|
218
|
+
except KeyError:
|
|
219
|
+
pass
|
|
220
|
+
|
|
221
|
+
def pop(self):
|
|
222
|
+
cdef tuple pair
|
|
223
|
+
try:
|
|
224
|
+
pair = self._members.popitem()
|
|
225
|
+
return pair[1]
|
|
226
|
+
except KeyError:
|
|
227
|
+
raise KeyError("pop from an empty set")
|
|
228
|
+
|
|
229
|
+
def clear(self):
|
|
230
|
+
self._members.clear()
|
|
231
|
+
|
|
232
|
+
def __eq__(self, other):
|
|
233
|
+
cdef IdentitySet other_
|
|
234
|
+
if isinstance(other, IdentitySet):
|
|
235
|
+
other_ = other
|
|
236
|
+
return self._members == other_._members
|
|
237
|
+
else:
|
|
238
|
+
return False
|
|
239
|
+
|
|
240
|
+
def __ne__(self, other):
|
|
241
|
+
cdef IdentitySet other_
|
|
242
|
+
if isinstance(other, IdentitySet):
|
|
243
|
+
other_ = other
|
|
244
|
+
return self._members != other_._members
|
|
245
|
+
else:
|
|
246
|
+
return True
|
|
247
|
+
|
|
248
|
+
cpdef issubset(self, iterable):
|
|
249
|
+
cdef IdentitySet other
|
|
250
|
+
if isinstance(iterable, self.__class__):
|
|
251
|
+
other = iterable
|
|
252
|
+
else:
|
|
253
|
+
other = self.__class__(iterable)
|
|
254
|
+
|
|
255
|
+
if len(self) > len(other):
|
|
256
|
+
return False
|
|
257
|
+
for m in filterfalse(other._members.__contains__, self._members):
|
|
258
|
+
return False
|
|
259
|
+
return True
|
|
260
|
+
|
|
261
|
+
def __le__(self, other):
|
|
262
|
+
if not isinstance(other, IdentitySet):
|
|
263
|
+
return NotImplemented
|
|
264
|
+
return self.issubset(other)
|
|
265
|
+
|
|
266
|
+
def __lt__(self, other):
|
|
267
|
+
if not isinstance(other, IdentitySet):
|
|
268
|
+
return NotImplemented
|
|
269
|
+
return len(self) < len(other) and self.issubset(other)
|
|
270
|
+
|
|
271
|
+
cpdef issuperset(self, iterable):
|
|
272
|
+
cdef IdentitySet other
|
|
273
|
+
if isinstance(iterable, self.__class__):
|
|
274
|
+
other = iterable
|
|
275
|
+
else:
|
|
276
|
+
other = self.__class__(iterable)
|
|
277
|
+
|
|
278
|
+
if len(self) < len(other):
|
|
279
|
+
return False
|
|
280
|
+
for m in filterfalse(self._members.__contains__, other._members):
|
|
281
|
+
return False
|
|
282
|
+
return True
|
|
283
|
+
|
|
284
|
+
def __ge__(self, other):
|
|
285
|
+
if not isinstance(other, IdentitySet):
|
|
286
|
+
return NotImplemented
|
|
287
|
+
return self.issuperset(other)
|
|
288
|
+
|
|
289
|
+
def __gt__(self, other):
|
|
290
|
+
if not isinstance(other, IdentitySet):
|
|
291
|
+
return NotImplemented
|
|
292
|
+
return len(self) > len(other) and self.issuperset(other)
|
|
293
|
+
|
|
294
|
+
cpdef IdentitySet union(self, iterable):
|
|
295
|
+
cdef IdentitySet result = self.__class__()
|
|
296
|
+
result._members.update(self._members)
|
|
297
|
+
result.update(iterable)
|
|
298
|
+
return result
|
|
299
|
+
|
|
300
|
+
def __or__(self, other):
|
|
301
|
+
if not isinstance(other, IdentitySet) or not isinstance(self, IdentitySet):
|
|
302
|
+
return NotImplemented
|
|
303
|
+
return self.union(other)
|
|
304
|
+
|
|
305
|
+
cpdef update(self, iterable):
|
|
306
|
+
for obj in iterable:
|
|
307
|
+
self._members[cy_id(obj)] = obj
|
|
308
|
+
|
|
309
|
+
def __ior__(self, other):
|
|
310
|
+
if not isinstance(other, IdentitySet):
|
|
311
|
+
return NotImplemented
|
|
312
|
+
self.update(other)
|
|
313
|
+
return self
|
|
314
|
+
|
|
315
|
+
cpdef IdentitySet difference(self, iterable):
|
|
316
|
+
cdef IdentitySet result = self.__new__(self.__class__)
|
|
317
|
+
if isinstance(iterable, self.__class__):
|
|
318
|
+
other = (<IdentitySet>iterable)._members
|
|
319
|
+
else:
|
|
320
|
+
other = {cy_id(obj) for obj in iterable}
|
|
321
|
+
result._members = {k:v for k, v in self._members.items() if k not in other}
|
|
322
|
+
return result
|
|
323
|
+
|
|
324
|
+
def __sub__(self, other):
|
|
325
|
+
if not isinstance(other, IdentitySet) or not isinstance(self, IdentitySet):
|
|
326
|
+
return NotImplemented
|
|
327
|
+
return self.difference(other)
|
|
328
|
+
|
|
329
|
+
cpdef difference_update(self, iterable):
|
|
330
|
+
cdef IdentitySet other = self.difference(iterable)
|
|
331
|
+
self._members = other._members
|
|
332
|
+
|
|
333
|
+
def __isub__(self, other):
|
|
334
|
+
if not isinstance(other, IdentitySet):
|
|
335
|
+
return NotImplemented
|
|
336
|
+
self.difference_update(other)
|
|
337
|
+
return self
|
|
338
|
+
|
|
339
|
+
cpdef IdentitySet intersection(self, iterable):
|
|
340
|
+
cdef IdentitySet result = self.__new__(self.__class__)
|
|
341
|
+
if isinstance(iterable, self.__class__):
|
|
342
|
+
other = (<IdentitySet>iterable)._members
|
|
343
|
+
else:
|
|
344
|
+
other = {cy_id(obj) for obj in iterable}
|
|
345
|
+
result._members = {k: v for k, v in self._members.items() if k in other}
|
|
346
|
+
return result
|
|
347
|
+
|
|
348
|
+
def __and__(self, other):
|
|
349
|
+
if not isinstance(other, IdentitySet) or not isinstance(self, IdentitySet):
|
|
350
|
+
return NotImplemented
|
|
351
|
+
return self.intersection(other)
|
|
352
|
+
|
|
353
|
+
cpdef intersection_update(self, iterable):
|
|
354
|
+
cdef IdentitySet other = self.intersection(iterable)
|
|
355
|
+
self._members = other._members
|
|
356
|
+
|
|
357
|
+
def __iand__(self, other):
|
|
358
|
+
if not isinstance(other, IdentitySet):
|
|
359
|
+
return NotImplemented
|
|
360
|
+
self.intersection_update(other)
|
|
361
|
+
return self
|
|
362
|
+
|
|
363
|
+
cpdef IdentitySet symmetric_difference(self, iterable):
|
|
364
|
+
cdef IdentitySet result = self.__new__(self.__class__)
|
|
365
|
+
cdef dict other
|
|
366
|
+
if isinstance(iterable, self.__class__):
|
|
367
|
+
other = (<IdentitySet>iterable)._members
|
|
368
|
+
else:
|
|
369
|
+
other = {cy_id(obj): obj for obj in iterable}
|
|
370
|
+
result._members = {k: v for k, v in self._members.items() if k not in other}
|
|
371
|
+
result._members.update(
|
|
372
|
+
[(k, v) for k, v in other.items() if k not in self._members]
|
|
373
|
+
)
|
|
374
|
+
return result
|
|
375
|
+
|
|
376
|
+
def __xor__(self, other):
|
|
377
|
+
if not isinstance(other, IdentitySet) or not isinstance(self, IdentitySet):
|
|
378
|
+
return NotImplemented
|
|
379
|
+
return self.symmetric_difference(other)
|
|
380
|
+
|
|
381
|
+
cpdef symmetric_difference_update(self, iterable):
|
|
382
|
+
cdef IdentitySet other = self.symmetric_difference(iterable)
|
|
383
|
+
self._members = other._members
|
|
384
|
+
|
|
385
|
+
def __ixor__(self, other):
|
|
386
|
+
if not isinstance(other, IdentitySet):
|
|
387
|
+
return NotImplemented
|
|
388
|
+
self.symmetric_difference(other)
|
|
389
|
+
return self
|
|
390
|
+
|
|
391
|
+
cpdef IdentitySet copy(self):
|
|
392
|
+
cdef IdentitySet cp = self.__new__(self.__class__)
|
|
393
|
+
cp._members = self._members.copy()
|
|
394
|
+
return cp
|
|
395
|
+
|
|
396
|
+
def __copy__(self):
|
|
397
|
+
return self.copy()
|
|
398
|
+
|
|
399
|
+
def __len__(self):
|
|
400
|
+
return len(self._members)
|
|
401
|
+
|
|
402
|
+
def __iter__(self):
|
|
403
|
+
return iter(self._members.values())
|
|
404
|
+
|
|
405
|
+
def __hash__(self):
|
|
406
|
+
raise TypeError("set objects are unhashable")
|
|
407
|
+
|
|
408
|
+
def __repr__(self):
|
|
409
|
+
return "%s(%r)" % (type(self).__name__, list(self._members.values()))
|
|
Binary file
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
# cyextension/immutabledict.pxd
|
|
2
|
+
# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
|
|
3
|
+
# <see AUTHORS file>
|
|
4
|
+
#
|
|
5
|
+
# This module is part of SQLAlchemy and is released under
|
|
6
|
+
# the MIT License: https://www.opensource.org/licenses/mit-license.php
|
|
7
|
+
cdef class immutabledict(dict):
|
|
8
|
+
pass
|