gnupic: TMR0 and 16F84


Previous by date: 27 Feb 2002 18:11:55 -0000 TMR0 and 16F84, Marko Hyv�rinen
Next by date: 27 Feb 2002 18:11:55 -0000 SDCC Status, Scott Dattalo
Previous in thread: 27 Feb 2002 18:11:55 -0000 TMR0 and 16F84, Marko Hyv�rinen
Next in thread:

--> -->
 
 
<type 'exceptions.LookupError'>
Python 2.7.18: /usr/bin/python2
Fri Sep 27 23:30:17 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 0x77f3766552b0, 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 0x77f3766552b0, 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': ...ate', 'UNIQUE_ID': 'Zvcx-XxZq1ukkpNsYor_IgAAAAQ'}
 /home/alex/websites/linuxhacker.org/ezmlm-browse/index.cgi/commands/showmsg.py in do(ctxt={'threadnum': 0, 'cmd': 'showmsg', 'threadidx': ...ate', 'UNIQUE_ID': 'Zvcx-XxZq1ukkpNsYor_IgAAAAQ'})
     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': ...ate', 'UNIQUE_ID': 'Zvcx-XxZq1ukkpNsYor_IgAAAAQ'}, global MSGNUM = 'msgnum'
 /home/alex/websites/linuxhacker.org/ezmlm-browse/index.cgi/globalfns.py in sub_showmsg(ctxt={'threadnum': 0, 'cmd': 'showmsg', 'threadidx': ...ate', 'UNIQUE_ID': 'Zvcx-XxZq1ukkpNsYor_IgAAAAQ'}, msgnum=1055)
    222                                                                           charset or config.charsets['default'],
    223                                                                           'replace')
=>  224                                                           for part,charset in value
    225                                                           ])
    226                         msg.replace_header(name,value)
part = 'Marko Hyv\xe4rinen', charset = 'x-unknown', value = [('Marko Hyv\xe4rinen', 'x-unknown'), ('<marko.hyvarinen@co.inet.fi>', None)]

<type 'exceptions.LookupError'>: unknown encoding: x-unknown
      args = ('unknown encoding: x-unknown',)
      message = 'unknown encoding: x-unknown'