summaryrefslogtreecommitdiff
path: root/dev-python/sqlalchemy/files
diff options
context:
space:
mode:
authorLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2024-05-27 05:50:05 +0000
committerLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2024-05-27 05:50:05 +0000
commit33b6909b999d83eb16714d828faed30f7fdb7dc3 (patch)
tree0b9c8171f0c7dc9f97e963dc20e06d3674d880e5 /dev-python/sqlalchemy/files
parent47caf22de7a2cf38c60b1565dba9b0a99e457afd (diff)
downloadbaldeagleos-repo-33b6909b999d83eb16714d828faed30f7fdb7dc3.tar.gz
baldeagleos-repo-33b6909b999d83eb16714d828faed30f7fdb7dc3.tar.xz
baldeagleos-repo-33b6909b999d83eb16714d828faed30f7fdb7dc3.zip
Adding metadata
Diffstat (limited to 'dev-python/sqlalchemy/files')
-rw-r--r--dev-python/sqlalchemy/files/sqlalchemy-2.0.30-py313.patch13
1 files changed, 13 insertions, 0 deletions
diff --git a/dev-python/sqlalchemy/files/sqlalchemy-2.0.30-py313.patch b/dev-python/sqlalchemy/files/sqlalchemy-2.0.30-py313.patch
new file mode 100644
index 000000000000..6c519d2a205e
--- /dev/null
+++ b/dev-python/sqlalchemy/files/sqlalchemy-2.0.30-py313.patch
@@ -0,0 +1,13 @@
+diff --git a/lib/sqlalchemy/util/langhelpers.py b/lib/sqlalchemy/util/langhelpers.py
+index c97fa7d..9a02e7d 100644
+--- a/lib/sqlalchemy/util/langhelpers.py
++++ b/lib/sqlalchemy/util/langhelpers.py
+@@ -1657,6 +1657,8 @@
+ items: List[symbol]
+ cls._items = items = []
+ for k, v in dict_.items():
++ if re.match(r"^__.*__$", k):
++ continue
+ if isinstance(v, int):
+ sym = symbol(k, canonical=v)
+ elif not k.startswith("_"):