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: language_level=3str
# cython: auto_pickle=True
from __future__ import absolute_import from __future__ import absolute_import
......
# cython: # cython: auto_pickle=False
cimport cython cimport cython
......
# cython: auto_pickle=False
""" """
Python Lexical Analyser Python Lexical Analyser
......
# cython: auto_pickle=False
""" """
Plex - Transition Maps Plex - Transition Maps
......
...@@ -163,7 +163,6 @@ def compile_cython_modules(profile=False, compile_more=False, cython_with_refnan ...@@ -163,7 +163,6 @@ def compile_cython_modules(profile=False, compile_more=False, cython_with_refnan
language_level=2, language_level=2,
binding=False, binding=False,
always_allow_keywords=False, always_allow_keywords=False,
auto_pickle=False,
autotestdict=False, autotestdict=False,
) )
if profile: 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