Explorar el Código

Implemented hook_read (triggered after read() method is done).

Sander Mathijs van Veen hace 14 años
padre
commit
eb1d1da4c2
Se han modificado 1 ficheros con 3 adiciones y 0 borrados
  1. 3 0
      src/pyrex/bison_.pyx

+ 3 - 0
src/pyrex/bison_.pyx

@@ -128,6 +128,9 @@ cdef public void py_input(object parser, char *buf, int *result, int max_size):
     except KeyboardInterrupt:
         raw = ''
 
+    if hasattr(parser, 'hook_read'):
+        raw = parser.hook_read(raw)
+
     buflen = PyInt_AsLong(len(raw))
     result[0] = buflen
     memcpy(buf, PyString_AsString(raw), buflen)