summaryrefslogtreecommitdiff
path: root/test/engine/test_processors.py
diff options
context:
space:
mode:
authorFederico Caselli <cfederico87@gmail.com>2021-02-18 19:12:45 +0100
committerFederico Caselli <cfederico87@gmail.com>2021-02-18 20:37:22 +0100
commit629273a31b1be9ed195e9082d40b8741ab31e073 (patch)
tree98d90e9a518737d2dfb6176f71654db2c04af728 /test/engine/test_processors.py
parent227fd31d7d7c9354e51008e5a14e2cb5ee885266 (diff)
downloadsqlalchemy-629273a31b1be9ed195e9082d40b8741ab31e073.tar.gz
Minor optimization to the code
* remove the c version of distill params since it's actually slower than the python one * add a function to langhelpers to check if the cextensions are active * minor cleanup to the OrderedSet implementation Change-Id: Iec3d0c3f0f42cdf51f802aaca342ba37b8783b85
Diffstat (limited to 'test/engine/test_processors.py')
-rw-r--r--test/engine/test_processors.py17
1 files changed, 0 insertions, 17 deletions
diff --git a/test/engine/test_processors.py b/test/engine/test_processors.py
index 5a4220c82..ad643a446 100644
--- a/test/engine/test_processors.py
+++ b/test/engine/test_processors.py
@@ -188,21 +188,4 @@ class PyDistillArgsTest(_DistillArgsTest):
def setup_test_class(cls):
from sqlalchemy.engine import util
- cls.module = type(
- "util",
- (object,),
- dict(
- (k, staticmethod(v))
- for k, v in list(util.py_fallback().items())
- ),
- )
-
-
-class CDistillArgsTest(_DistillArgsTest):
- __requires__ = ("cextensions",)
-
- @classmethod
- def setup_test_class(cls):
- from sqlalchemy import cutils as util
-
cls.module = util