Boston Linux & UNIX was originally founded in 1994 as part of The Boston Computer Society. We meet on the third Wednesday of each month at the Massachusetts Institute of Technology, in Building E51.

Don Becker on Beowulf clusters

Date and Time

Wednesday, July 16, 2008 from 6:30 pm to 9:00 pm

Location

MIT Building E-51, Room 315

Presenters

--> -->
 
 
<type 'exceptions.ValueError'>
Python 2.7.5: /usr/bin/python
Mon Mar 27 01:11:37 2023

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

 /srv/www/cgi-bin/calendar in ()
    563   print '</html>'
    564 
    565 if __name__ == '__main__':
=>  566   main()
    567 
main = <function main>
 /srv/www/cgi-bin/calendar in main()
     37     if row_exists(dbh, 'events', path_info):
     38       print_html_header('BLU event: %s' % path_info)
=>   39       show_event(dbh, path_info)
     40     else:
     41       print_html_header('Nonexistent BLU event')
global show_event = <function show_event>, dbh = <connection object at 0x7f98875cd7f8; dsn: 'dbna...t='localhost' password=xxxxxxxxxxxxx', closed: 0>, global path_info = '2008-jul'
 /srv/www/cgi-bin/calendar in show_event(dbh=<connection object at 0x7f98875cd7f8; dsn: 'dbna...t='localhost' password=xxxxxxxxxxxxx', closed: 0>, evt_id='2008-jul')
    138         print '<p><strong>%s</strong></p>' % label
    139       for row in rows:
=>  140         show_person(dbh, row['pers_id'], 1)
    141         if row['bio']:
    142           bios[row['pers_id']] = row['bio']
global show_person = <function show_person>, dbh = <connection object at 0x7f98875cd7f8; dsn: 'dbna...t='localhost' password=xxxxxxxxxxxxx', closed: 0>, row = ['d-becker1 ', None]
 /srv/www/cgi-bin/calendar in show_person(dbh=<connection object at 0x7f98875cd7f8; dsn: 'dbna...t='localhost' password=xxxxxxxxxxxxx', closed: 0>, pers_id='d-becker1 ', show_link=1)
    311       email = 'no-such-user@example.com'
    312     print '<img src="%s" width=32 height=32 />' % gravatar(email, 32)
=>  313     print nicename(row['name'], pers_id, show_link)
    314     if row['title']: print ', %s' % row['title']
    315     if row['org_name']:
global nicename = <function nicename>, row = ['Don Becker', 'Chief Technology Officer', 'peng...in Computing', 'http://www.penguincomputing.com'], pers_id = 'd-becker1 ', show_link = 1
 /srv/www/cgi-bin/calendar in nicename(name='Don Becker', pers_id='d-becker1 ', show_link=1)
    342 
    343 def nicename(name, pers_id=None, show_link=None):
=>  344   pre,sur,post = name.split('/')
    345   name = '%s<strong>%s</strong>%s' % (pre,sur,post)
    346   link = '<a target="_blank" href="%s/speakers/%s">%s</a>' % (script_name, pers_id, name)
pre undefined, sur undefined, post undefined, name = 'Don Becker', name.split = <built-in method split of str object>

<type 'exceptions.ValueError'>: need more than 1 value to unpack
      args = ('need more than 1 value to unpack',)
      message = 'need more than 1 value to unpack'