File tree 1 file changed +4
-0
lines changed
1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -10,13 +10,17 @@ def compiler_directives(profile: bool):
10
10
auto_pickle = False ,
11
11
# Do not create __test__ dictionary automatically from docstrings
12
12
autotestdict = False ,
13
+ binding = False ,
14
+ c_api_binop_methods = True ,
13
15
# Do not check for division by 0 (this is about 35% quicker than with check)
14
16
cdivision = True ,
17
+ cpow = True ,
15
18
# Embed a textual copy of the call signature in the docstring (to support tools like IPython)
16
19
embedsignature = True ,
17
20
fast_getattr = True ,
18
21
# Use Python 3 (including source code semantics) for module compilation
19
22
language_level = "3" ,
23
+ legacy_implicit_noexcept = True ,
20
24
# Enable support for late includes (make declarations in Cython code available to C include files)
21
25
preliminary_late_includes_cy28 = True ,
22
26
# Add hooks for Python profilers into the compiled C code
You can’t perform that action at this time.
0 commit comments