We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ac646c0 commit 206b739Copy full SHA for 206b739
mypyc/test/test_cheader.py
@@ -7,7 +7,6 @@
7
import re
8
import unittest
9
10
-from mypyc.ir.ops import PrimitiveDescription
11
from mypyc.primitives import registry
12
13
@@ -32,8 +31,6 @@ def check_name(name: str) -> None:
32
31
registry.function_ops.values(),
33
]:
34
for ops in values:
35
- if isinstance(ops, PrimitiveDescription):
36
- ops = [ops]
37
for op in ops:
38
if op.c_function_name is not None:
39
check_name(op.c_function_name)
0 commit comments