[Python-checkins] buildbot failure in alpha Tru64 5.1 trunk

buildbot at python.org buildbot at python.org
Thu Mar 27 01:47:59 CET 2008


The Buildbot has detected a new failure of alpha Tru64 5.1 trunk.
Full details are available at:
 http://www.python.org/dev/buildbot/all/alpha%20Tru64%205.1%20trunk/builds/2762
Buildbot URL: http://www.python.org/dev/buildbot/all/
Buildslave for this Build: norwitz-tru64
Build Reason: 
Build Source Stamp: [branch trunk] HEAD
Blamelist: amaury.forgeotdarc,christian.heimes
BUILD FAILED: failed test
Excerpt from the test logfile:
7 tests failed:
 test_asynchat test_compiler test_io test_shelve test_smtplib
 test_socket test_unicodedata
======================================================================
ERROR: testCompileLibrary (test.test_compiler.CompilerTest)
----------------------------------------------------------------------
Traceback (most recent call last):
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/test_compiler.py", line 53, in testCompileLibrary
 compiler.compile(buf, basename, "exec")
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/compiler/pycodegen.py", line 64, in compile
 gen.compile()
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/compiler/pycodegen.py", line 112, in compile
 gen = ModuleCodeGenerator(tree)
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/compiler/pycodegen.py", line 1277, in __init__
 self.futures = future.find_futures(tree)
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/compiler/future.py", line 59, in find_futures
 walk(node, p1)
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/compiler/visitor.py", line 106, in walk
 walker.preorder(tree, visitor)
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/compiler/visitor.py", line 63, in preorder
 self.dispatch(tree, *args) # XXX *args make sense?
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/compiler/visitor.py", line 57, in dispatch
 return meth(node, *args)
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/compiler/future.py", line 27, in visitModule
 if not self.check_stmt(s):
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/compiler/future.py", line 37, in check_stmt
 "future feature %s is not defined" % name
SyntaxError: future feature unicode_literals is not defined
======================================================================
ERROR: testBasicIO (test.test_io.TextIOWrapperTest)
----------------------------------------------------------------------
Traceback (most recent call last):
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/test_io.py", line 823, in testBasicIO
 self.multi_line_test(f, enc)
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/test_io.py", line 841, in multi_line_test
 pos = f.tell()
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/io.py", line 1388, in tell
 for next_byte[0] in next_input:
ValueError: byte must be in range(0, 256)
======================================================================
ERROR: testSeeking (test.test_io.TextIOWrapperTest)
----------------------------------------------------------------------
Traceback (most recent call last):
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/test_io.py", line 883, in testSeeking
 self.assertEquals(f.tell(), prefix_size)
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/io.py", line 1388, in tell
 for next_byte[0] in next_input:
ValueError: byte must be in range(0, 256)
======================================================================
ERROR: testSeekingToo (test.test_io.TextIOWrapperTest)
----------------------------------------------------------------------
Traceback (most recent call last):
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/test_io.py", line 896, in testSeekingToo
 f.tell()
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/io.py", line 1388, in tell
 for next_byte[0] in next_input:
ValueError: byte must be in range(0, 256)
======================================================================
ERROR: testTelling (test.test_io.TextIOWrapperTest)
----------------------------------------------------------------------
Traceback (most recent call last):
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/test_io.py", line 858, in testTelling
 self.assertEquals(f.tell(), p1)
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/io.py", line 1388, in tell
 for next_byte[0] in next_input:
ValueError: byte must be in range(0, 256)
======================================================================
ERROR: test_issue1395_5 (test.test_io.TextIOWrapperTest)
----------------------------------------------------------------------
Traceback (most recent call last):
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/test_io.py", line 1078, in test_issue1395_5
 pos = txt.tell()
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/io.py", line 1388, in tell
 for next_byte[0] in next_input:
ValueError: byte must be in range(0, 256)
======================================================================
ERROR: test_bool (test.test_shelve.TestAsciiFileShelve)
----------------------------------------------------------------------
Traceback (most recent call last):
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/mapping_tests.py", line 135, in test_bool
 self.assert_(not self._empty_mapping())
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/test_shelve.py", line 93, in _empty_mapping
 x= shelve.open(self.fn+str(self.counter), **self._args)
TypeError: open() keywords must be strings
======================================================================
ERROR: test_constructor (test.test_shelve.TestAsciiFileShelve)
----------------------------------------------------------------------
Traceback (most recent call last):
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/mapping_tests.py", line 132, in test_constructor
 self.assertEqual(self._empty_mapping(), self._empty_mapping())
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/test_shelve.py", line 93, in _empty_mapping
 x= shelve.open(self.fn+str(self.counter), **self._args)
TypeError: open() keywords must be strings
======================================================================
ERROR: test_get (test.test_shelve.TestAsciiFileShelve)
----------------------------------------------------------------------
Traceback (most recent call last):
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/mapping_tests.py", line 270, in test_get
 d = self._empty_mapping()
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/test_shelve.py", line 93, in _empty_mapping
 x= shelve.open(self.fn+str(self.counter), **self._args)
TypeError: open() keywords must be strings
======================================================================
ERROR: test_items (test.test_shelve.TestAsciiFileShelve)
----------------------------------------------------------------------
Traceback (most recent call last):
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/mapping_tests.py", line 155, in test_items
 d = self._empty_mapping()
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/test_shelve.py", line 93, in _empty_mapping
 x= shelve.open(self.fn+str(self.counter), **self._args)
TypeError: open() keywords must be strings
======================================================================
ERROR: test_keys (test.test_shelve.TestAsciiFileShelve)
----------------------------------------------------------------------
Traceback (most recent call last):
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/mapping_tests.py", line 141, in test_keys
 d = self._empty_mapping()
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/test_shelve.py", line 93, in _empty_mapping
 x= shelve.open(self.fn+str(self.counter), **self._args)
TypeError: open() keywords must be strings
======================================================================
ERROR: test_len (test.test_shelve.TestAsciiFileShelve)
----------------------------------------------------------------------
Traceback (most recent call last):
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/mapping_tests.py", line 161, in test_len
 d = self._empty_mapping()
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/test_shelve.py", line 93, in _empty_mapping
 x= shelve.open(self.fn+str(self.counter), **self._args)
TypeError: open() keywords must be strings
======================================================================
ERROR: test_pop (test.test_shelve.TestAsciiFileShelve)
----------------------------------------------------------------------
Traceback (most recent call last):
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/mapping_tests.py", line 291, in test_pop
 d = self._empty_mapping()
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/test_shelve.py", line 93, in _empty_mapping
 x= shelve.open(self.fn+str(self.counter), **self._args)
TypeError: open() keywords must be strings
======================================================================
ERROR: test_popitem (test.test_shelve.TestAsciiFileShelve)
----------------------------------------------------------------------
Traceback (most recent call last):
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/mapping_tests.py", line 286, in test_popitem
 d = self._empty_mapping()
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/test_shelve.py", line 93, in _empty_mapping
 x= shelve.open(self.fn+str(self.counter), **self._args)
TypeError: open() keywords must be strings
======================================================================
ERROR: test_read (test.test_shelve.TestAsciiFileShelve)
----------------------------------------------------------------------
Traceback (most recent call last):
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/mapping_tests.py", line 44, in test_read
 p = self._empty_mapping()
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/test_shelve.py", line 93, in _empty_mapping
 x= shelve.open(self.fn+str(self.counter), **self._args)
TypeError: open() keywords must be strings
======================================================================
ERROR: test_setdefault (test.test_shelve.TestAsciiFileShelve)
----------------------------------------------------------------------
Traceback (most recent call last):
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/mapping_tests.py", line 282, in test_setdefault
 d = self._empty_mapping()
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/test_shelve.py", line 93, in _empty_mapping
 x= shelve.open(self.fn+str(self.counter), **self._args)
TypeError: open() keywords must be strings
======================================================================
ERROR: test_update (test.test_shelve.TestAsciiFileShelve)
----------------------------------------------------------------------
Traceback (most recent call last):
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/mapping_tests.py", line 172, in test_update
 d = self._empty_mapping()
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/test_shelve.py", line 93, in _empty_mapping
 x= shelve.open(self.fn+str(self.counter), **self._args)
TypeError: open() keywords must be strings
======================================================================
ERROR: test_values (test.test_shelve.TestAsciiFileShelve)
----------------------------------------------------------------------
Traceback (most recent call last):
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/mapping_tests.py", line 149, in test_values
 d = self._empty_mapping()
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/test_shelve.py", line 93, in _empty_mapping
 x= shelve.open(self.fn+str(self.counter), **self._args)
TypeError: open() keywords must be strings
======================================================================
ERROR: test_write (test.test_shelve.TestAsciiFileShelve)
----------------------------------------------------------------------
Traceback (most recent call last):
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/mapping_tests.py", line 91, in test_write
 p = self._empty_mapping()
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/test_shelve.py", line 93, in _empty_mapping
 x= shelve.open(self.fn+str(self.counter), **self._args)
TypeError: open() keywords must be strings
======================================================================
ERROR: test_bool (test.test_shelve.TestBinaryFileShelve)
----------------------------------------------------------------------
Traceback (most recent call last):
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/mapping_tests.py", line 135, in test_bool
 self.assert_(not self._empty_mapping())
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/test_shelve.py", line 93, in _empty_mapping
 x= shelve.open(self.fn+str(self.counter), **self._args)
TypeError: open() keywords must be strings
======================================================================
ERROR: test_constructor (test.test_shelve.TestBinaryFileShelve)
----------------------------------------------------------------------
Traceback (most recent call last):
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/mapping_tests.py", line 132, in test_constructor
 self.assertEqual(self._empty_mapping(), self._empty_mapping())
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/test_shelve.py", line 93, in _empty_mapping
 x= shelve.open(self.fn+str(self.counter), **self._args)
TypeError: open() keywords must be strings
======================================================================
ERROR: test_get (test.test_shelve.TestBinaryFileShelve)
----------------------------------------------------------------------
Traceback (most recent call last):
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/mapping_tests.py", line 270, in test_get
 d = self._empty_mapping()
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/test_shelve.py", line 93, in _empty_mapping
 x= shelve.open(self.fn+str(self.counter), **self._args)
TypeError: open() keywords must be strings
======================================================================
ERROR: test_items (test.test_shelve.TestBinaryFileShelve)
----------------------------------------------------------------------
Traceback (most recent call last):
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/mapping_tests.py", line 155, in test_items
 d = self._empty_mapping()
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/test_shelve.py", line 93, in _empty_mapping
 x= shelve.open(self.fn+str(self.counter), **self._args)
TypeError: open() keywords must be strings
======================================================================
ERROR: test_keys (test.test_shelve.TestBinaryFileShelve)
----------------------------------------------------------------------
Traceback (most recent call last):
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/mapping_tests.py", line 141, in test_keys
 d = self._empty_mapping()
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/test_shelve.py", line 93, in _empty_mapping
 x= shelve.open(self.fn+str(self.counter), **self._args)
TypeError: open() keywords must be strings
======================================================================
ERROR: test_len (test.test_shelve.TestBinaryFileShelve)
----------------------------------------------------------------------
Traceback (most recent call last):
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/mapping_tests.py", line 161, in test_len
 d = self._empty_mapping()
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/test_shelve.py", line 93, in _empty_mapping
 x= shelve.open(self.fn+str(self.counter), **self._args)
TypeError: open() keywords must be strings
======================================================================
ERROR: test_pop (test.test_shelve.TestBinaryFileShelve)
----------------------------------------------------------------------
Traceback (most recent call last):
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/mapping_tests.py", line 291, in test_pop
 d = self._empty_mapping()
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/test_shelve.py", line 93, in _empty_mapping
 x= shelve.open(self.fn+str(self.counter), **self._args)
TypeError: open() keywords must be strings
======================================================================
ERROR: test_popitem (test.test_shelve.TestBinaryFileShelve)
----------------------------------------------------------------------
Traceback (most recent call last):
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/mapping_tests.py", line 286, in test_popitem
 d = self._empty_mapping()
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/test_shelve.py", line 93, in _empty_mapping
 x= shelve.open(self.fn+str(self.counter), **self._args)
TypeError: open() keywords must be strings
======================================================================
ERROR: test_read (test.test_shelve.TestBinaryFileShelve)
----------------------------------------------------------------------
Traceback (most recent call last):
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/mapping_tests.py", line 44, in test_read
 p = self._empty_mapping()
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/test_shelve.py", line 93, in _empty_mapping
 x= shelve.open(self.fn+str(self.counter), **self._args)
TypeError: open() keywords must be strings
======================================================================
ERROR: test_setdefault (test.test_shelve.TestBinaryFileShelve)
----------------------------------------------------------------------
Traceback (most recent call last):
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/mapping_tests.py", line 282, in test_setdefault
 d = self._empty_mapping()
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/test_shelve.py", line 93, in _empty_mapping
 x= shelve.open(self.fn+str(self.counter), **self._args)
TypeError: open() keywords must be strings
======================================================================
ERROR: test_update (test.test_shelve.TestBinaryFileShelve)
----------------------------------------------------------------------
Traceback (most recent call last):
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/mapping_tests.py", line 172, in test_update
 d = self._empty_mapping()
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/test_shelve.py", line 93, in _empty_mapping
 x= shelve.open(self.fn+str(self.counter), **self._args)
TypeError: open() keywords must be strings
======================================================================
ERROR: test_values (test.test_shelve.TestBinaryFileShelve)
----------------------------------------------------------------------
Traceback (most recent call last):
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/mapping_tests.py", line 149, in test_values
 d = self._empty_mapping()
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/test_shelve.py", line 93, in _empty_mapping
 x= shelve.open(self.fn+str(self.counter), **self._args)
TypeError: open() keywords must be strings
======================================================================
ERROR: test_write (test.test_shelve.TestBinaryFileShelve)
----------------------------------------------------------------------
Traceback (most recent call last):
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/mapping_tests.py", line 91, in test_write
 p = self._empty_mapping()
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/test_shelve.py", line 93, in _empty_mapping
 x= shelve.open(self.fn+str(self.counter), **self._args)
TypeError: open() keywords must be strings
======================================================================
ERROR: test_bool (test.test_shelve.TestProto2FileShelve)
----------------------------------------------------------------------
Traceback (most recent call last):
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/mapping_tests.py", line 135, in test_bool
 self.assert_(not self._empty_mapping())
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/test_shelve.py", line 93, in _empty_mapping
 x= shelve.open(self.fn+str(self.counter), **self._args)
TypeError: open() keywords must be strings
======================================================================
ERROR: test_constructor (test.test_shelve.TestProto2FileShelve)
----------------------------------------------------------------------
Traceback (most recent call last):
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/mapping_tests.py", line 132, in test_constructor
 self.assertEqual(self._empty_mapping(), self._empty_mapping())
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/test_shelve.py", line 93, in _empty_mapping
 x= shelve.open(self.fn+str(self.counter), **self._args)
TypeError: open() keywords must be strings
======================================================================
ERROR: test_get (test.test_shelve.TestProto2FileShelve)
----------------------------------------------------------------------
Traceback (most recent call last):
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/mapping_tests.py", line 270, in test_get
 d = self._empty_mapping()
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/test_shelve.py", line 93, in _empty_mapping
 x= shelve.open(self.fn+str(self.counter), **self._args)
TypeError: open() keywords must be strings
======================================================================
ERROR: test_items (test.test_shelve.TestProto2FileShelve)
----------------------------------------------------------------------
Traceback (most recent call last):
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/mapping_tests.py", line 155, in test_items
 d = self._empty_mapping()
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/test_shelve.py", line 93, in _empty_mapping
 x= shelve.open(self.fn+str(self.counter), **self._args)
TypeError: open() keywords must be strings
======================================================================
ERROR: test_keys (test.test_shelve.TestProto2FileShelve)
----------------------------------------------------------------------
Traceback (most recent call last):
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/mapping_tests.py", line 141, in test_keys
 d = self._empty_mapping()
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/test_shelve.py", line 93, in _empty_mapping
 x= shelve.open(self.fn+str(self.counter), **self._args)
TypeError: open() keywords must be strings
======================================================================
ERROR: test_len (test.test_shelve.TestProto2FileShelve)
----------------------------------------------------------------------
Traceback (most recent call last):
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/mapping_tests.py", line 161, in test_len
 d = self._empty_mapping()
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/test_shelve.py", line 93, in _empty_mapping
 x= shelve.open(self.fn+str(self.counter), **self._args)
TypeError: open() keywords must be strings
======================================================================
ERROR: test_pop (test.test_shelve.TestProto2FileShelve)
----------------------------------------------------------------------
Traceback (most recent call last):
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/mapping_tests.py", line 291, in test_pop
 d = self._empty_mapping()
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/test_shelve.py", line 93, in _empty_mapping
 x= shelve.open(self.fn+str(self.counter), **self._args)
TypeError: open() keywords must be strings
======================================================================
ERROR: test_popitem (test.test_shelve.TestProto2FileShelve)
----------------------------------------------------------------------
Traceback (most recent call last):
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/mapping_tests.py", line 286, in test_popitem
 d = self._empty_mapping()
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/test_shelve.py", line 93, in _empty_mapping
 x= shelve.open(self.fn+str(self.counter), **self._args)
TypeError: open() keywords must be strings
======================================================================
ERROR: test_read (test.test_shelve.TestProto2FileShelve)
----------------------------------------------------------------------
Traceback (most recent call last):
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/mapping_tests.py", line 44, in test_read
 p = self._empty_mapping()
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/test_shelve.py", line 93, in _empty_mapping
 x= shelve.open(self.fn+str(self.counter), **self._args)
TypeError: open() keywords must be strings
======================================================================
ERROR: test_setdefault (test.test_shelve.TestProto2FileShelve)
----------------------------------------------------------------------
Traceback (most recent call last):
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/mapping_tests.py", line 282, in test_setdefault
 d = self._empty_mapping()
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/test_shelve.py", line 93, in _empty_mapping
 x= shelve.open(self.fn+str(self.counter), **self._args)
TypeError: open() keywords must be strings
======================================================================
ERROR: test_update (test.test_shelve.TestProto2FileShelve)
----------------------------------------------------------------------
Traceback (most recent call last):
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/mapping_tests.py", line 172, in test_update
 d = self._empty_mapping()
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/test_shelve.py", line 93, in _empty_mapping
 x= shelve.open(self.fn+str(self.counter), **self._args)
TypeError: open() keywords must be strings
======================================================================
ERROR: test_values (test.test_shelve.TestProto2FileShelve)
----------------------------------------------------------------------
Traceback (most recent call last):
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/mapping_tests.py", line 149, in test_values
 d = self._empty_mapping()
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/test_shelve.py", line 93, in _empty_mapping
 x= shelve.open(self.fn+str(self.counter), **self._args)
TypeError: open() keywords must be strings
======================================================================
ERROR: test_write (test.test_shelve.TestProto2FileShelve)
----------------------------------------------------------------------
Traceback (most recent call last):
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/mapping_tests.py", line 91, in test_write
 p = self._empty_mapping()
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/test_shelve.py", line 93, in _empty_mapping
 x= shelve.open(self.fn+str(self.counter), **self._args)
TypeError: open() keywords must be strings
======================================================================
ERROR: test_bool (test.test_shelve.TestAsciiMemShelve)
----------------------------------------------------------------------
Traceback (most recent call last):
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/mapping_tests.py", line 135, in test_bool
 self.assert_(not self._empty_mapping())
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/test_shelve.py", line 90, in _empty_mapping
 x= shelve.Shelf({}, **self._args)
TypeError: __init__() keywords must be strings
======================================================================
ERROR: test_constructor (test.test_shelve.TestAsciiMemShelve)
----------------------------------------------------------------------
Traceback (most recent call last):
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/mapping_tests.py", line 132, in test_constructor
 self.assertEqual(self._empty_mapping(), self._empty_mapping())
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/test_shelve.py", line 90, in _empty_mapping
 x= shelve.Shelf({}, **self._args)
TypeError: __init__() keywords must be strings
======================================================================
ERROR: test_get (test.test_shelve.TestAsciiMemShelve)
----------------------------------------------------------------------
Traceback (most recent call last):
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/mapping_tests.py", line 270, in test_get
 d = self._empty_mapping()
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/test_shelve.py", line 90, in _empty_mapping
 x= shelve.Shelf({}, **self._args)
TypeError: __init__() keywords must be strings
======================================================================
ERROR: test_items (test.test_shelve.TestAsciiMemShelve)
----------------------------------------------------------------------
Traceback (most recent call last):
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/mapping_tests.py", line 155, in test_items
 d = self._empty_mapping()
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/test_shelve.py", line 90, in _empty_mapping
 x= shelve.Shelf({}, **self._args)
TypeError: __init__() keywords must be strings
======================================================================
ERROR: test_keys (test.test_shelve.TestAsciiMemShelve)
----------------------------------------------------------------------
Traceback (most recent call last):
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/mapping_tests.py", line 141, in test_keys
 d = self._empty_mapping()
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/test_shelve.py", line 90, in _empty_mapping
 x= shelve.Shelf({}, **self._args)
TypeError: __init__() keywords must be strings
======================================================================
ERROR: test_len (test.test_shelve.TestAsciiMemShelve)
----------------------------------------------------------------------
Traceback (most recent call last):
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/mapping_tests.py", line 161, in test_len
 d = self._empty_mapping()
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/test_shelve.py", line 90, in _empty_mapping
 x= shelve.Shelf({}, **self._args)
TypeError: __init__() keywords must be strings
======================================================================
ERROR: test_pop (test.test_shelve.TestAsciiMemShelve)
----------------------------------------------------------------------
Traceback (most recent call last):
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/mapping_tests.py", line 291, in test_pop
 d = self._empty_mapping()
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/test_shelve.py", line 90, in _empty_mapping
 x= shelve.Shelf({}, **self._args)
TypeError: __init__() keywords must be strings
======================================================================
ERROR: test_popitem (test.test_shelve.TestAsciiMemShelve)
----------------------------------------------------------------------
Traceback (most recent call last):
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/mapping_tests.py", line 286, in test_popitem
 d = self._empty_mapping()
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/test_shelve.py", line 90, in _empty_mapping
 x= shelve.Shelf({}, **self._args)
TypeError: __init__() keywords must be strings
======================================================================
ERROR: test_read (test.test_shelve.TestAsciiMemShelve)
----------------------------------------------------------------------
Traceback (most recent call last):
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/mapping_tests.py", line 44, in test_read
 p = self._empty_mapping()
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/test_shelve.py", line 90, in _empty_mapping
 x= shelve.Shelf({}, **self._args)
TypeError: __init__() keywords must be strings
======================================================================
ERROR: test_setdefault (test.test_shelve.TestAsciiMemShelve)
----------------------------------------------------------------------
Traceback (most recent call last):
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/mapping_tests.py", line 282, in test_setdefault
 d = self._empty_mapping()
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/test_shelve.py", line 90, in _empty_mapping
 x= shelve.Shelf({}, **self._args)
TypeError: __init__() keywords must be strings
======================================================================
ERROR: test_update (test.test_shelve.TestAsciiMemShelve)
----------------------------------------------------------------------
Traceback (most recent call last):
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/mapping_tests.py", line 172, in test_update
 d = self._empty_mapping()
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/test_shelve.py", line 90, in _empty_mapping
 x= shelve.Shelf({}, **self._args)
TypeError: __init__() keywords must be strings
======================================================================
ERROR: test_values (test.test_shelve.TestAsciiMemShelve)
----------------------------------------------------------------------
Traceback (most recent call last):
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/mapping_tests.py", line 149, in test_values
 d = self._empty_mapping()
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/test_shelve.py", line 90, in _empty_mapping
 x= shelve.Shelf({}, **self._args)
TypeError: __init__() keywords must be strings
======================================================================
ERROR: test_write (test.test_shelve.TestAsciiMemShelve)
----------------------------------------------------------------------
Traceback (most recent call last):
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/mapping_tests.py", line 91, in test_write
 p = self._empty_mapping()
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/test_shelve.py", line 90, in _empty_mapping
 x= shelve.Shelf({}, **self._args)
TypeError: __init__() keywords must be strings
======================================================================
ERROR: test_bool (test.test_shelve.TestBinaryMemShelve)
----------------------------------------------------------------------
Traceback (most recent call last):
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/mapping_tests.py", line 135, in test_bool
 self.assert_(not self._empty_mapping())
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/test_shelve.py", line 90, in _empty_mapping
 x= shelve.Shelf({}, **self._args)
TypeError: __init__() keywords must be strings
======================================================================
ERROR: test_constructor (test.test_shelve.TestBinaryMemShelve)
----------------------------------------------------------------------
Traceback (most recent call last):
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/mapping_tests.py", line 132, in test_constructor
 self.assertEqual(self._empty_mapping(), self._empty_mapping())
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/test_shelve.py", line 90, in _empty_mapping
 x= shelve.Shelf({}, **self._args)
TypeError: __init__() keywords must be strings
======================================================================
ERROR: test_get (test.test_shelve.TestBinaryMemShelve)
----------------------------------------------------------------------
Traceback (most recent call last):
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/mapping_tests.py", line 270, in test_get
 d = self._empty_mapping()
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/test_shelve.py", line 90, in _empty_mapping
 x= shelve.Shelf({}, **self._args)
TypeError: __init__() keywords must be strings
======================================================================
ERROR: test_items (test.test_shelve.TestBinaryMemShelve)
----------------------------------------------------------------------
Traceback (most recent call last):
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/mapping_tests.py", line 155, in test_items
 d = self._empty_mapping()
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/test_shelve.py", line 90, in _empty_mapping
 x= shelve.Shelf({}, **self._args)
TypeError: __init__() keywords must be strings
======================================================================
ERROR: test_keys (test.test_shelve.TestBinaryMemShelve)
----------------------------------------------------------------------
Traceback (most recent call last):
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/mapping_tests.py", line 141, in test_keys
 d = self._empty_mapping()
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/test_shelve.py", line 90, in _empty_mapping
 x= shelve.Shelf({}, **self._args)
TypeError: __init__() keywords must be strings
======================================================================
ERROR: test_len (test.test_shelve.TestBinaryMemShelve)
----------------------------------------------------------------------
Traceback (most recent call last):
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/mapping_tests.py", line 161, in test_len
 d = self._empty_mapping()
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/test_shelve.py", line 90, in _empty_mapping
 x= shelve.Shelf({}, **self._args)
TypeError: __init__() keywords must be strings
======================================================================
ERROR: test_pop (test.test_shelve.TestBinaryMemShelve)
----------------------------------------------------------------------
Traceback (most recent call last):
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/mapping_tests.py", line 291, in test_pop
 d = self._empty_mapping()
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/test_shelve.py", line 90, in _empty_mapping
 x= shelve.Shelf({}, **self._args)
TypeError: __init__() keywords must be strings
======================================================================
ERROR: test_popitem (test.test_shelve.TestBinaryMemShelve)
----------------------------------------------------------------------
Traceback (most recent call last):
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/mapping_tests.py", line 286, in test_popitem
 d = self._empty_mapping()
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/test_shelve.py", line 90, in _empty_mapping
 x= shelve.Shelf({}, **self._args)
TypeError: __init__() keywords must be strings
======================================================================
ERROR: test_read (test.test_shelve.TestBinaryMemShelve)
----------------------------------------------------------------------
Traceback (most recent call last):
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/mapping_tests.py", line 44, in test_read
 p = self._empty_mapping()
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/test_shelve.py", line 90, in _empty_mapping
 x= shelve.Shelf({}, **self._args)
TypeError: __init__() keywords must be strings
======================================================================
ERROR: test_setdefault (test.test_shelve.TestBinaryMemShelve)
----------------------------------------------------------------------
Traceback (most recent call last):
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/mapping_tests.py", line 282, in test_setdefault
 d = self._empty_mapping()
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/test_shelve.py", line 90, in _empty_mapping
 x= shelve.Shelf({}, **self._args)
TypeError: __init__() keywords must be strings
======================================================================
ERROR: test_update (test.test_shelve.TestBinaryMemShelve)
----------------------------------------------------------------------
Traceback (most recent call last):
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/mapping_tests.py", line 172, in test_update
 d = self._empty_mapping()
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/test_shelve.py", line 90, in _empty_mapping
 x= shelve.Shelf({}, **self._args)
TypeError: __init__() keywords must be strings
======================================================================
ERROR: test_values (test.test_shelve.TestBinaryMemShelve)
----------------------------------------------------------------------
Traceback (most recent call last):
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/mapping_tests.py", line 149, in test_values
 d = self._empty_mapping()
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/test_shelve.py", line 90, in _empty_mapping
 x= shelve.Shelf({}, **self._args)
TypeError: __init__() keywords must be strings
======================================================================
ERROR: test_write (test.test_shelve.TestBinaryMemShelve)
----------------------------------------------------------------------
Traceback (most recent call last):
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/mapping_tests.py", line 91, in test_write
 p = self._empty_mapping()
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/test_shelve.py", line 90, in _empty_mapping
 x= shelve.Shelf({}, **self._args)
TypeError: __init__() keywords must be strings
======================================================================
ERROR: test_bool (test.test_shelve.TestProto2MemShelve)
----------------------------------------------------------------------
Traceback (most recent call last):
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/mapping_tests.py", line 135, in test_bool
 self.assert_(not self._empty_mapping())
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/test_shelve.py", line 90, in _empty_mapping
 x= shelve.Shelf({}, **self._args)
TypeError: __init__() keywords must be strings
======================================================================
ERROR: test_constructor (test.test_shelve.TestProto2MemShelve)
----------------------------------------------------------------------
Traceback (most recent call last):
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/mapping_tests.py", line 132, in test_constructor
 self.assertEqual(self._empty_mapping(), self._empty_mapping())
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/test_shelve.py", line 90, in _empty_mapping
 x= shelve.Shelf({}, **self._args)
TypeError: __init__() keywords must be strings
======================================================================
ERROR: test_get (test.test_shelve.TestProto2MemShelve)
----------------------------------------------------------------------
Traceback (most recent call last):
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/mapping_tests.py", line 270, in test_get
 d = self._empty_mapping()
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/test_shelve.py", line 90, in _empty_mapping
 x= shelve.Shelf({}, **self._args)
TypeError: __init__() keywords must be strings
======================================================================
ERROR: test_items (test.test_shelve.TestProto2MemShelve)
----------------------------------------------------------------------
Traceback (most recent call last):
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/mapping_tests.py", line 155, in test_items
 d = self._empty_mapping()
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/test_shelve.py", line 90, in _empty_mapping
 x= shelve.Shelf({}, **self._args)
TypeError: __init__() keywords must be strings
======================================================================
ERROR: test_keys (test.test_shelve.TestProto2MemShelve)
----------------------------------------------------------------------
Traceback (most recent call last):
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/mapping_tests.py", line 141, in test_keys
 d = self._empty_mapping()
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/test_shelve.py", line 90, in _empty_mapping
 x= shelve.Shelf({}, **self._args)
TypeError: __init__() keywords must be strings
======================================================================
ERROR: test_len (test.test_shelve.TestProto2MemShelve)
----------------------------------------------------------------------
Traceback (most recent call last):
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/mapping_tests.py", line 161, in test_len
 d = self._empty_mapping()
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/test_shelve.py", line 90, in _empty_mapping
 x= shelve.Shelf({}, **self._args)
TypeError: __init__() keywords must be strings
======================================================================
ERROR: test_pop (test.test_shelve.TestProto2MemShelve)
----------------------------------------------------------------------
Traceback (most recent call last):
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/mapping_tests.py", line 291, in test_pop
 d = self._empty_mapping()
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/test_shelve.py", line 90, in _empty_mapping
 x= shelve.Shelf({}, **self._args)
TypeError: __init__() keywords must be strings
======================================================================
ERROR: test_popitem (test.test_shelve.TestProto2MemShelve)
----------------------------------------------------------------------
Traceback (most recent call last):
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/mapping_tests.py", line 286, in test_popitem
 d = self._empty_mapping()
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/test_shelve.py", line 90, in _empty_mapping
 x= shelve.Shelf({}, **self._args)
TypeError: __init__() keywords must be strings
======================================================================
ERROR: test_read (test.test_shelve.TestProto2MemShelve)
----------------------------------------------------------------------
Traceback (most recent call last):
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/mapping_tests.py", line 44, in test_read
 p = self._empty_mapping()
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/test_shelve.py", line 90, in _empty_mapping
 x= shelve.Shelf({}, **self._args)
TypeError: __init__() keywords must be strings
======================================================================
ERROR: test_setdefault (test.test_shelve.TestProto2MemShelve)
----------------------------------------------------------------------
Traceback (most recent call last):
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/mapping_tests.py", line 282, in test_setdefault
 d = self._empty_mapping()
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/test_shelve.py", line 90, in _empty_mapping
 x= shelve.Shelf({}, **self._args)
TypeError: __init__() keywords must be strings
======================================================================
ERROR: test_update (test.test_shelve.TestProto2MemShelve)
----------------------------------------------------------------------
Traceback (most recent call last):
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/mapping_tests.py", line 172, in test_update
 d = self._empty_mapping()
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/test_shelve.py", line 90, in _empty_mapping
 x= shelve.Shelf({}, **self._args)
TypeError: __init__() keywords must be strings
======================================================================
ERROR: test_values (test.test_shelve.TestProto2MemShelve)
----------------------------------------------------------------------
Traceback (most recent call last):
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/mapping_tests.py", line 149, in test_values
 d = self._empty_mapping()
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/test_shelve.py", line 90, in _empty_mapping
 x= shelve.Shelf({}, **self._args)
TypeError: __init__() keywords must be strings
======================================================================
ERROR: test_write (test.test_shelve.TestProto2MemShelve)
----------------------------------------------------------------------
Traceback (most recent call last):
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/mapping_tests.py", line 91, in test_write
 p = self._empty_mapping()
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/test_shelve.py", line 90, in _empty_mapping
 x= shelve.Shelf({}, **self._args)
TypeError: __init__() keywords must be strings
======================================================================
FAIL: testInterruptedTimeout (test.test_socket.TCPTimeoutTest)
----------------------------------------------------------------------
Traceback (most recent call last):
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/test_socket.py", line 994, in testInterruptedTimeout
 self.fail("got Alarm in wrong place")
AssertionError: got Alarm in wrong place
======================================================================
FAIL: test_east_asian_width (test.test_unicodedata.UnicodeFunctionsTest)
----------------------------------------------------------------------
Traceback (most recent call last):
 File "/net/taipan/scratch1/nnorwitz/python/trunk.norwitz-tru64/build/Lib/test/test_unicodedata.py", line 179, in test_east_asian_width
 self.assertRaises(TypeError, eaw, 'a')
AssertionError: TypeError not raised
sincerely,
 -The Buildbot


More information about the Python-checkins mailing list

AltStyle によって変換されたページ (->オリジナル) /