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 9619312 commit 860c9b6Copy full SHA for 860c9b6
cypari2/handle_error.pyx
@@ -145,7 +145,6 @@ cdef void _pari_init_error_handling():
145
Warnings still work just like in GP::
146
147
>>> pari('warning("test")')
148
- *** user warning: test
149
"""
150
global cb_pari_err_handle
151
global cb_pari_err_recover
setup.py
@@ -49,7 +49,10 @@ def finalize_options(self):
49
# Generate auto-generated sources from pari.desc
50
rebuild()
51
52
- self.directives = dict(binding=True)
+ self.directives = {
53
+ "autotestdict.cdef": True,
54
+ "binding": True,
55
+ }
56
57
self.distribution.ext_modules[:] = cythonize(
58
self.distribution.ext_modules,
0 commit comments