diff options
author | Uwe Hermann <uwe@hermann-uwe.de> | 2011-11-27 22:27:36 +0100 |
---|---|---|
committer | Uwe Hermann <uwe@hermann-uwe.de> | 2011-11-27 22:27:36 +0100 |
commit | 4e338c00bda2e81210bf7569f29b77999a1d2bfb (patch) | |
tree | 3445e4320ae7bb072a46dcc7447b6c70f719049f /decoders/nunchuk.py | |
parent | e100d51ec0909db8f93c837ea1fd92a08461b781 (diff) | |
download | libsigrokdecode-4e338c00bda2e81210bf7569f29b77999a1d2bfb.tar.gz libsigrokdecode-4e338c00bda2e81210bf7569f29b77999a1d2bfb.zip |
decoders: Drop psyco stuff, seems obsolete.
The psyco module seems to be mostly unmaintained at this point, it does
not support Python 2.7 or higher at all, it only supports x86, it doesn't
support 64 bit systems at all, etc. etc.
We should try to find other ways to optimize our decoders for speed.
Diffstat (limited to 'decoders/nunchuk.py')
-rw-r--r-- | decoders/nunchuk.py | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/decoders/nunchuk.py b/decoders/nunchuk.py index 31de4ff..068c170 100644 --- a/decoders/nunchuk.py +++ b/decoders/nunchuk.py @@ -165,10 +165,3 @@ register = { # 'report': report, } -# Use psyco (if available) as it results in huge performance improvements. -try: - import psyco - psyco.bind(decode) -except ImportError: - pass - |