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 | eae5efbf112a8697309fe7c1e385a8609124520e (patch) | |
tree | fb11f063c4a205f9ec41f400e8bd21d644c11fdf /python/pkg | |
parent | 89df59e9ad1260b6ff36e4aa0e730ad84faec211 (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 |