Code
Hub
Workspaces
Connect
Indexed graphs
Engine
MCP
copy
hub
/
github.com/sqlalchemy/sqlalchemy
/ _unescape_identifier
Method
_unescape_identifier
test/sql/test_quote.py:892–893 ·
view source on GitHub ↗
(self, value)
Source
from the content-addressed store, hash-verified
890
return
value.replace(
"`"
,
"``"
)
891
892
def
_unescape_identifier(self, value):
893
return
value.replace(
"``"
,
"`"
)
894
895
prep = Custom(default.DefaultDialect())
896
unformat = prep.unformat_identifiers
Callers
nothing calls this directly
Calls
1
replace
Method · 0.45
Tested by
no test coverage detected