From: <bc...@wo...> - 2001-08-06 20:18:54
|
On Thu, 26 Jul 2001 14:13:57 +0200 (CEST), you wrote: >Regarding my previous post. I found and applyed the fix for the "Py Meta >Class Bug". Lo and behold the applet runs. >Now I get an error then exceuting the pageHandler function: >"LookupError: no codec search functions registered: can't find encoding" The urllib uses an encoding called "ASCII". Jython 2.1a3 only supports the name "ascii" as a builtin encoding. This particular problem will be fixed in 2.1b1. As a workaround in 2.1a3 you can add this line to the beginning of the script: import encodings.ascii Thank you for reporting this. regards, finn |