diff pytouhou/utils/random.pyx @ 616:4ce3ef053a25

Remove every case where an exception could be silently eaten by a cdef function.
author Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
date Sat, 28 Mar 2015 23:21:15 +0100
parents 292fea5c584e
children
line wrap: on
line diff
--- a/pytouhou/utils/random.pyx
+++ b/pytouhou/utils/random.pyx
@@ -25,9 +25,11 @@ It has been reverse engineered from 102h
 
 #TODO: maybe some post-processing is missing
 
-
+cimport cython
 from time import time
 
+
+@cython.final
 cdef class Random:
     def __init__(self, long seed=-1):
         if seed < 0: