diff options
author | Robey Pointer <robey@lag.net> | 2004-05-29 18:48:23 +0000 |
---|---|---|
committer | Robey Pointer <robey@lag.net> | 2004-05-29 18:48:23 +0000 |
commit | 6ea60572afe6bb2fc30b197946ea653451fc240e (patch) | |
tree | 04594180d905d9e83c655119339d8db583f6805f /README | |
parent | ed77581d7a8a36af5a141d8bac41213aa9ef750a (diff) |
[project @ Arch-1:robey@lag.net--2003-public%secsh--dev--1.0--patch-53]
add note about utf8 encodings
add info to the README about what to do if python complains about missing
encodings. veleriy pogrebitskiy ran into this and had advice.
Diffstat (limited to 'README')
-rw-r--r-- | README | 12 |
1 files changed, 12 insertions, 0 deletions
@@ -61,6 +61,17 @@ out for: you really should upgrade to python 2.3. laziness is no excuse! :) +some python distributions don't include the utf-8 string encodings, for reasons +of space (misdirected as that is). if your distribution is missing encodings, +you'll see an error like this: + +LookupError: no codec search functions registered: can't find encoding + +this means you need to copy string encodings over from a working system. +(it probably only happens on embedded systems, not normal python installls.) +Valeriy Pogrebitskiy says the best place to look is +'.../lib/python*/encodings/__init__.py'. + *** DEMO @@ -127,3 +138,4 @@ v0.9 FEAROW * multi-part auth not supported (ie, need username AND pk) * server mode needs better documentation * sftp server mode +* make invoke_subsystem, etc wait for a reply |