nanogui: Re:[nanogui] Compile error


Previous by date: 21 Dec 2007 17:40:12 +0000 running nano-X, Demetris Zavorotnichenko
Next by date: 21 Dec 2007 17:40:12 +0000 microwindows API, Demetris Zavorotnichenko
Previous in thread: 21 Dec 2007 17:40:12 +0000 Re:[nanogui] Compile error, aflar
Next in thread:

Subject: Re: [nanogui] Re:[nanogui] Compile error
From: Wayne ####@####.####
Date: 21 Dec 2007 17:40:12 +0000
Message-Id: <476BFA6F.8030104@zk.com>

--> -->
 
 
<type 'exceptions.UnicodeDecodeError'>
Python 2.7.18: /usr/bin/python2
Fri Apr 26 21:28:50 2024

A problem occurred in a Python script. Here is the sequence of function calls leading up to the error, in the order they occurred.

 /usr/lib64/python2.7/runpy.py in _run_module_as_main(mod_name='__main__', alter_argv=0)
    172         sys.argv[0] = fname
    173     return _run_code(code, main_globals, None,
=>  174                      "__main__", fname, loader, pkg_name)
    175 
    176 def run_module(mod_name, init_globals=None,
fname = '/home/alex/websites/linuxhacker.org/ezmlm-browse/index.cgi/__main__.py', loader = <zipimporter object "/home/alex/websites/linuxhacker.org/ezmlm-browse/index.cgi">, pkg_name = ''
 /usr/lib64/python2.7/runpy.py in _run_code(code=<code object <module> at 0x70477472f330, file "/....org/ezmlm-browse/index.cgi/__main__.py", line 1>, run_globals={'__builtins__': <module '__builtin__' (built-in)>, '__doc__': None, '__file__': '/home/alex/websites/linuxhacker.org/ezmlm-browse/index.cgi/__main__.py', '__loader__': <zipimporter object "/home/alex/websites/linuxhacker.org/ezmlm-browse/index.cgi">, '__name__': '__main__', '__package__': '', 'main': <module 'main' from '/home/alex/websites/linuxhacker.org/ezmlm-browse/index.cgi/main.py'>}, init_globals=None, mod_name='__main__', mod_fname='/home/alex/websites/linuxhacker.org/ezmlm-browse/index.cgi/__main__.py', mod_loader=<zipimporter object "/home/alex/websites/linuxhacker.org/ezmlm-browse/index.cgi">, pkg_name='')
     70                        __loader__ = mod_loader,
     71                        __package__ = pkg_name)
=>   72     exec code in run_globals
     73     return run_globals
     74 
code = <code object <module> at 0x70477472f330, file "/....org/ezmlm-browse/index.cgi/__main__.py", line 1>, run_globals = {'__builtins__': <module '__builtin__' (built-in)>, '__doc__': None, '__file__': '/home/alex/websites/linuxhacker.org/ezmlm-browse/index.cgi/__main__.py', '__loader__': <zipimporter object "/home/alex/websites/linuxhacker.org/ezmlm-browse/index.cgi">, '__name__': '__main__', '__package__': '', 'main': <module 'main' from '/home/alex/websites/linuxhacker.org/ezmlm-browse/index.cgi/main.py'>}
 /home/alex/websites/linuxhacker.org/ezmlm-browse/index.cgi/__main__.py in <module>()
      1 import main
=>    2 main.main()
main = <module 'main' from '/home/alex/websites/linuxhacker.org/ezmlm-browse/index.cgi/main.py'>, main.main = <function main>
 /home/alex/websites/linuxhacker.org/ezmlm-browse/index.cgi/main.py in main()
    424 
    425         if path is not None:
    426                 main_path(path)
    427         else:
=>  428                 main_form()
global main_form = <function main_form>
 /home/alex/websites/linuxhacker.org/ezmlm-browse/index.cgi/main.py in main_form()
    378         except ImportError:
    379                 die(ctxt, "Invalid command")
=>  380         module.do(ctxt)
    381 
    382 def main():
module = <module 'commands.showmsg' from '/home/alex/webs....org/ezmlm-browse/index.cgi/commands/showmsg.py'>, module.do = <function do>, global ctxt = {'threadnum': 0, 'cmd': 'showmsg', 'threadidx': ...ror', 'UNIQUE_ID': 'ZiwOgm8zLIA5PyajACjGAwAAAAU'}
 /home/alex/websites/linuxhacker.org/ezmlm-browse/index.cgi/commands/showmsg.py in do(ctxt={'threadnum': 0, 'cmd': 'showmsg', 'threadidx': ...ror', 'UNIQUE_ID': 'ZiwOgm8zLIA5PyajACjGAwAAAAU'})
     18         write(html('msg-pager') % ctxt)
     19         write('<hr>')
=>   20         sub_showmsg(ctxt, ctxt[MSGNUM])
     21         write('<hr>')
     22         write(html('msg-pager') % ctxt)
global sub_showmsg = <function sub_showmsg>, ctxt = {'threadnum': 0, 'cmd': 'showmsg', 'threadidx': ...ror', 'UNIQUE_ID': 'ZiwOgm8zLIA5PyajACjGAwAAAAU'}, global MSGNUM = 'msgnum'
 /home/alex/websites/linuxhacker.org/ezmlm-browse/index.cgi/globalfns.py in sub_showmsg(ctxt={'threadnum': 0, 'cmd': 'showmsg', 'threadidx': ...ror', 'UNIQUE_ID': 'ZiwOgm8zLIA5PyajACjGAwAAAAU'}, msgnum=12106)
    229         format_timestamp(ctxt, ctxt)
    230         write(html('msg-header') % ctxt)
=>  231         rec_showpart(ctxt, msg, 0)
    232         write(html('msg-footer') % ctxt)
    233         ctxt.pop()
global rec_showpart = <function rec_showpart>, ctxt = {'threadnum': 0, 'cmd': 'showmsg', 'threadidx': ...ror', 'UNIQUE_ID': 'ZiwOgm8zLIA5PyajACjGAwAAAAU'}, msg = <email.message.Message instance>
 /home/alex/websites/linuxhacker.org/ezmlm-browse/index.cgi/globalfns.py in rec_showpart(ctxt={'threadnum': 0, 'cmd': 'showmsg', 'threadidx': ...ror', 'UNIQUE_ID': 'ZiwOgm8zLIA5PyajACjGAwAAAAU'}, part=<email.message.Message instance>, partnum=0)
    208         else:
    209                 write(html('msg-sep') % ctxt)
=>  210                 sub_showpart(ctxt, part)
    211         return partnum
    212 
global sub_showpart = <function sub_showpart>, ctxt = {'threadnum': 0, 'cmd': 'showmsg', 'threadidx': ...ror', 'UNIQUE_ID': 'ZiwOgm8zLIA5PyajACjGAwAAAAU'}, part = <email.message.Message instance>
 /home/alex/websites/linuxhacker.org/ezmlm-browse/index.cgi/globalfns.py in sub_showpart(ctxt={'threadnum': 0, 'cmd': 'showmsg', 'threadidx': ...ror', 'UNIQUE_ID': 'ZiwOgm8zLIA5PyajACjGAwAAAAU'}, part=<email.message.Message instance>)
    169         if not template:
    170                 template = html('msg-other')
=>  171         write(template % ctxt)
    172 
    173 def rec_noshowpart(ctxt, part, partnum):
global write = <function write>, template = '<pre>%(mask_email(markup_urls(html(wordwrap(body)))))s</pre>\n', ctxt = {'threadnum': 0, 'cmd': 'showmsg', 'threadidx': ...ror', 'UNIQUE_ID': 'ZiwOgm8zLIA5PyajACjGAwAAAAU'}
 /home/alex/websites/linuxhacker.org/ezmlm-browse/index.cgi/globalfns.py in write(s="<pre>aflar wrote:\n&gt; Yes,I've got the same err... \nthe name of this macro in winevent.c...\n</pre>\n")
     10 
     11 def write(s):
=>   12         sys.stdout.write(s.encode('utf-8'))
     13 
     14 ###############################################################################
global sys = <module 'sys' (built-in)>, sys.stdout = <open file '<stdout>', mode 'w'>, sys.stdout.write = <built-in method write of file object>, s = "<pre>aflar wrote:\n&gt; Yes,I've got the same err... \nthe name of this macro in winevent.c...\n</pre>\n", s.encode = <built-in method encode of str object>

<type 'exceptions.UnicodeDecodeError'>: 'ascii' codec can't decode byte 0xd4 in position 368: ordinal not in range(128)
      args = ('ascii', "<pre>aflar wrote:\n&gt; Yes,I've got the same err... \nthe name of this macro in winevent.c...\n</pre>\n", 368, 369, 'ordinal not in range(128)')
      encoding = 'ascii'
      end = 369
      message = ''
      object = "<pre>aflar wrote:\n&gt; Yes,I've got the same err... \nthe name of this macro in winevent.c...\n</pre>\n"
      reason = 'ordinal not in range(128)'
      start = 368