On Mon, 29 Oct 2001 09:50:20 -0800 Chuck Esterbrook <[EMAIL PROTECTED]> wrote: >
[mod_webkit] >The only snag that comes to mind is perhaps you need Apache development >libraries or something. You'd find out pretty quick though if that were the >case. Apache was installed with Red Hat, so I can imagine that there are numerous built-in problems in that department. There always are with the different binary RPM packages and it's easier to build from source than to mess with the source RPMs. >In any case, I have your problem listed under 0.6 TO DO items. I can't >guarantee it will be fixed, but if you keep investigating it and reporting >your results to the list, there's a good chance. I found the cause of the problem - I'm obtaining the name of a module to import from an XML document, and it is this value which gets passed to imp.find_module. Unfortunately, imp.find_module doesn't want to use Unicode strings, and there's even a check in the source code which ensures that only the Python string type can be used for module names in that function. I have fixes for my own code, thus avoiding the need for changes in WebKit, but I may also raise this with the Python people either as a documentation issue or as a functionality issue. If only I had used repr when printing the values out, I might have come to a conclusion more quickly. Paul -- Get your firstname@lastname email for FREE at http://Nameplanet.com/?su _______________________________________________ Webware-discuss mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/webware-discuss
