diff options
author | Victor Chahuneau <vchahune@cs.cmu.edu> | 2012-08-08 18:56:02 -0400 |
---|---|---|
committer | Victor Chahuneau <vchahune@cs.cmu.edu> | 2012-08-08 18:56:02 -0400 |
commit | e0eabf1e59cbfa85b00efcff699cdcd6a524e9c5 (patch) | |
tree | e6d013ebdb0eafc8e1e380e84549460847d685ac /python/pkg | |
parent | cc5584e9b066e6d1177495f7028ff49ab057ed52 (diff) |
[python] Get rid of the GIL
Diffstat (limited to 'python/pkg')
-rw-r--r-- | python/pkg/cdec/__init__.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/python/pkg/cdec/__init__.py b/python/pkg/cdec/__init__.py index 531fea49..8e10f340 100644 --- a/python/pkg/cdec/__init__.py +++ b/python/pkg/cdec/__init__.py @@ -1 +1,2 @@ -from cdec._cdec import Decoder, Lattice, TRule, MRule, NT, NTRef, ParseFailed, InvalidConfig +from cdec._cdec import Decoder, Lattice, TRule, MRule, NT, NTRef,\ + ParseFailed, InvalidConfig, set_silent |