Skip to content
This repository has been archived by the owner on Jan 30, 2023. It is now read-only.

Commit

Permalink
fix warning from cython
Browse files Browse the repository at this point in the history
  • Loading branch information
embray committed Dec 12, 2018
1 parent 0cf2047 commit eefc0fc
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/sage/libs/gap/util.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -482,7 +482,9 @@ cdef void error_handler():
are already handling an error; if there is an error in our stream
handling code below it could result in a stack overflow.
"""
cdef PyObject *exc_type, *exc_val, *exc_tb
cdef PyObject* exc_type
cdef PyObject* exc_val
cdef PyObject* exc_tb

# Close the error stream: This flushes any remaining output and closes
# the stream for further writing; reset ERROR_OUTPUT to something sane
Expand Down

0 comments on commit eefc0fc

Please sign in to comment.