Commit 3ee06628 authored by Stefan Behnel's avatar Stefan Behnel

Re-enable pickling for some Cython modules, the control flow graph needs it for deep copying.

(Although that seems a bug – deep copying should probably just keep the control flow graph intact.)
parent ae2d0076
# cython: language_level=3str
# cython: auto_pickle=True
from __future__ import absolute_import
......
# cython:
# cython: auto_pickle=False
cimport cython
......
# cython: auto_pickle=False
"""
Python Lexical Analyser
......
# cython: auto_pickle=False
"""
Plex - Transition Maps
......
......@@ -163,7 +163,6 @@ def compile_cython_modules(profile=False, compile_more=False, cython_with_refnan
language_level=2,
binding=False,
always_allow_keywords=False,
auto_pickle=False,
autotestdict=False,
)
if profile:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment