Commit ace04473 authored by Xavier Thompson's avatar Xavier Thompson

Fix nested lock acquisition in inplace operations

parent 43a721b3
...@@ -212,9 +212,9 @@ def create_pipeline(context, mode, exclude_classes=()): ...@@ -212,9 +212,9 @@ def create_pipeline(context, mode, exclude_classes=()):
_check_c_declarations, _check_c_declarations,
InlineDefNodeCalls(context), InlineDefNodeCalls(context),
AnalyseExpressionsTransform(context), AnalyseExpressionsTransform(context),
CypclassLockTransform(context),
FindInvalidUseOfFusedTypes(context), FindInvalidUseOfFusedTypes(context),
ExpandInplaceOperators(context), ExpandInplaceOperators(context),
CypclassLockTransform(context),
IterationTransform(context), IterationTransform(context),
SwitchTransform(context), SwitchTransform(context),
OptimizeBuiltinCalls(context), ## Necessary? OptimizeBuiltinCalls(context), ## Necessary?
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment