summaryrefslogtreecommitdiff
path: root/decoders/nunchuk.py
diff options
context:
space:
mode:
authorUwe Hermann <uwe@hermann-uwe.de>2011-11-27 22:27:36 +0100
committerUwe Hermann <uwe@hermann-uwe.de>2011-11-27 22:27:36 +0100
commit4e338c00bda2e81210bf7569f29b77999a1d2bfb (patch)
tree3445e4320ae7bb072a46dcc7447b6c70f719049f /decoders/nunchuk.py
parente100d51ec0909db8f93c837ea1fd92a08461b781 (diff)
downloadlibsigrokdecode-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.py7
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
-