Skip to content

Commit

Permalink
Reduce Cython's module size of "Actions", "Scanners", "StringIOTree",…
Browse files Browse the repository at this point in the history
… "Visitor" and "Code" by disabling auto-pickling.
  • Loading branch information
scoder committed Jun 16, 2018
1 parent 4417844 commit 40c0438
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions Cython/Compiler/Code.py
@@ -1,4 +1,5 @@
# cython: language_level = 2
# cython: auto_pickle=False
#
# Code output module
#
Expand Down
1 change: 1 addition & 0 deletions Cython/Compiler/Visitor.py
@@ -1,5 +1,6 @@
# cython: infer_types=True
# cython: language_level=3
# cython: auto_pickle=False

#
# Tree visitor and transform framework
Expand Down
1 change: 1 addition & 0 deletions Cython/Plex/Actions.py
@@ -1,3 +1,4 @@
# cython: auto_pickle=False
#=======================================================================
#
# Python Lexical Analyser
Expand Down
1 change: 1 addition & 0 deletions Cython/Plex/Scanners.py
@@ -1,3 +1,4 @@
# cython: auto_pickle=False
#=======================================================================
#
# Python Lexical Analyser
Expand Down
2 changes: 2 additions & 0 deletions Cython/StringIOTree.py
@@ -1,3 +1,5 @@
# cython: auto_pickle=False

r"""
Implements a buffer with insertion points. When you know you need to
"get back" to a place and write more later, simply call insertion_point()
Expand Down

0 comments on commit 40c0438

Please sign in to comment.