Skip to content
Snippets Groups Projects
Commit 8511afd9 authored by Donald Stufft's avatar Donald Stufft
Browse files

Remove the CFFI compile_module monkey patch

parent be8940fe
No related branches found
No related tags found
No related merge requests found
......@@ -148,12 +148,6 @@ class Library(object):
self._ffi = ffi
self._initalized = False
# This prevents the compile_module() from being called, the module
# should have been compiled by setup.py
def _compile_module(*args, **kwargs):
raise RuntimeError("Cannot compile module during runtime")
self._ffi.verifier.compile_module = _compile_module
def __getattr__(self, name):
if not self._initalized:
self._lib = self._ffi.verifier.load_library()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment