[Python-checkins] buildbot failure in x86 XP-3 3.0

buildbot at python.org buildbot at python.org
Thu May 15 10:34:41 CEST 2008


The Buildbot has detected a new failure of x86 XP-3 3.0.
Full details are available at:
 http://www.python.org/dev/buildbot/all/x86%20XP-3%203.0/builds/903

Buildbot URL: http://www.python.org/dev/buildbot/all/

Buildslave for this Build: heller-windows

Build Reason: 
Build Source Stamp: [branch branches/py3k] HEAD
Blamelist: brett.cannon

BUILD FAILED: failed test

Excerpt from the test logfile:
21 tests failed:
    test_bufio test_builtin test_deque test_distutils test_filecmp
    test_gzip test_io test_iter test_mailbox test_marshal test_mmap
    test_multibytecodec test_pep277 test_pkgutil test_set test_site
    test_sundry test_urllib test_urllib2 test_zipfile test_zipimport

======================================================================
ERROR: test_primepat (test.test_bufio.BufferSizeTest)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_bufio.py", line 56, in test_primepat
    self.drive_one(b"1234567890\00\01\02\03\04\05\06")
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_bufio.py", line 50, in drive_one
    self.try_one(teststring + b"x")
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_bufio.py", line 21, in try_one
    f = open(test_support.TESTFN, "wb")
  File "C:\buildbot\work\3.0.heller-windows\build\lib\io.py", line 280, in __new__
    return open(*args, **kwargs)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\io.py", line 219, in open
    closefd)
IOError: [Errno 13] Permission denied: '@test'

======================================================================
ERROR: test_input (test.test_builtin.BuiltinTest)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_builtin.py", line 963, in test_input
    self.write_testfile()
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_builtin.py", line 778, in write_testfile
    fp = open(TESTFN, 'w')
  File "C:\buildbot\work\3.0.heller-windows\build\lib\io.py", line 280, in __new__
    return open(*args, **kwargs)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\io.py", line 219, in open
    closefd)
IOError: [Errno 13] Permission denied: '@test'

======================================================================
ERROR: test_maxlen (test.test_deque.TestBasic)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_deque.py", line 80, in test_maxlen
    fo = open(test_support.TESTFN, "w")
  File "C:\buildbot\work\3.0.heller-windows\build\lib\io.py", line 280, in __new__
    return open(*args, **kwargs)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\io.py", line 219, in open
    closefd)
IOError: [Errno 13] Permission denied: '@test'

======================================================================
ERROR: test_print (test.test_deque.TestBasic)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_deque.py", line 294, in test_print
    fo.close()
UnboundLocalError: local variable 'fo' referenced before assignment

======================================================================
ERROR: test_build (distutils.tests.test_build_scripts.BuildScriptsTestCase)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\distutils\tests\support.py", line 34, in tearDown
    shutil.rmtree(d)
  File "c:\buildbot\work\3.0.heller-windows\build\lib\shutil.py", line 188, in rmtree
    onerror(os.rmdir, path, sys.exc_info())
  File "c:\buildbot\work\3.0.heller-windows\build\lib\shutil.py", line 186, in rmtree
    os.rmdir(path)
WindowsError: [Error 145] The directory is not empty: 'c:\\docume~1\\theller\\locals~1\\temp\\tmp1z2vfj'

======================================================================
ERROR: test_read (test.test_gzip.TestGzip)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_gzip.py", line 45, in test_read
    self.test_write()
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_gzip.py", line 35, in test_write
    f = gzip.GzipFile(self.filename, 'wb') ; f.write(data1 * 50)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\gzip.py", line 91, in __init__
    fileobj = self.myfileobj = builtins.open(filename, mode or 'rb')
  File "C:\buildbot\work\3.0.heller-windows\build\lib\io.py", line 280, in __new__
    return open(*args, **kwargs)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\io.py", line 219, in open
    closefd)
IOError: [Errno 13] Permission denied: '@test'

======================================================================
ERROR: test_get (test.test_mailbox.TestMMDF)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 715, in tearDown
    self._box.close()
  File "C:\buildbot\work\3.0.heller-windows\build\lib\mailbox.py", line 641, in close
    self.flush()
  File "C:\buildbot\work\3.0.heller-windows\build\lib\mailbox.py", line 618, in flush
    os.rename(new_file.name, self._path)
WindowsError: [Error 5] Access is denied

======================================================================
ERROR: test_get_file (test.test_mailbox.TestMMDF)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 57, in setUp
    self._box = self._factory(self._path)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 811, in <lambda>
    _factory = lambda self, path, factory=None: mailbox.MMDF(path, factory)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\mailbox.py", line 764, in __init__
    _mboxMMDF.__init__(self, path, factory, create)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\mailbox.py", line 511, in __init__
    f = open(self._path, 'r', newline='')
  File "C:\buildbot\work\3.0.heller-windows\build\lib\io.py", line 280, in __new__
    return open(*args, **kwargs)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\io.py", line 219, in open
    closefd)
IOError: [Errno 13] Permission denied: 'C:\\buildbot\\work\\3.0.heller-windows\\build\\PCbuild\\@test'

======================================================================
ERROR: test_get_message (test.test_mailbox.TestMMDF)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 57, in setUp
    self._box = self._factory(self._path)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 811, in <lambda>
    _factory = lambda self, path, factory=None: mailbox.MMDF(path, factory)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\mailbox.py", line 764, in __init__
    _mboxMMDF.__init__(self, path, factory, create)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\mailbox.py", line 511, in __init__
    f = open(self._path, 'r', newline='')
  File "C:\buildbot\work\3.0.heller-windows\build\lib\io.py", line 280, in __new__
    return open(*args, **kwargs)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\io.py", line 219, in open
    closefd)
IOError: [Errno 13] Permission denied: 'C:\\buildbot\\work\\3.0.heller-windows\\build\\PCbuild\\@test'

======================================================================
ERROR: test_get_string (test.test_mailbox.TestMMDF)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 57, in setUp
    self._box = self._factory(self._path)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 811, in <lambda>
    _factory = lambda self, path, factory=None: mailbox.MMDF(path, factory)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\mailbox.py", line 764, in __init__
    _mboxMMDF.__init__(self, path, factory, create)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\mailbox.py", line 511, in __init__
    f = open(self._path, 'r', newline='')
  File "C:\buildbot\work\3.0.heller-windows\build\lib\io.py", line 280, in __new__
    return open(*args, **kwargs)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\io.py", line 219, in open
    closefd)
IOError: [Errno 13] Permission denied: 'C:\\buildbot\\work\\3.0.heller-windows\\build\\PCbuild\\@test'

======================================================================
ERROR: test_getitem (test.test_mailbox.TestMMDF)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 57, in setUp
    self._box = self._factory(self._path)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 811, in <lambda>
    _factory = lambda self, path, factory=None: mailbox.MMDF(path, factory)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\mailbox.py", line 764, in __init__
    _mboxMMDF.__init__(self, path, factory, create)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\mailbox.py", line 511, in __init__
    f = open(self._path, 'r', newline='')
  File "C:\buildbot\work\3.0.heller-windows\build\lib\io.py", line 280, in __new__
    return open(*args, **kwargs)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\io.py", line 219, in open
    closefd)
IOError: [Errno 13] Permission denied: 'C:\\buildbot\\work\\3.0.heller-windows\\build\\PCbuild\\@test'

======================================================================
ERROR: test_items (test.test_mailbox.TestMMDF)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 57, in setUp
    self._box = self._factory(self._path)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 811, in <lambda>
    _factory = lambda self, path, factory=None: mailbox.MMDF(path, factory)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\mailbox.py", line 764, in __init__
    _mboxMMDF.__init__(self, path, factory, create)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\mailbox.py", line 511, in __init__
    f = open(self._path, 'r', newline='')
  File "C:\buildbot\work\3.0.heller-windows\build\lib\io.py", line 280, in __new__
    return open(*args, **kwargs)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\io.py", line 219, in open
    closefd)
IOError: [Errno 2] No such file or directory: 'C:\\buildbot\\work\\3.0.heller-windows\\build\\PCbuild\\@test'

======================================================================
ERROR: test_iter (test.test_mailbox.TestMMDF)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 715, in tearDown
    self._box.close()
  File "C:\buildbot\work\3.0.heller-windows\build\lib\mailbox.py", line 641, in close
    self.flush()
  File "C:\buildbot\work\3.0.heller-windows\build\lib\mailbox.py", line 588, in flush
    new_file = _create_temporary(self._path)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\mailbox.py", line 1913, in _create_temporary
    os.getpid()))
  File "C:\buildbot\work\3.0.heller-windows\build\lib\mailbox.py", line 1903, in _create_carefully
    fd = os.open(path, os.O_CREAT | os.O_EXCL | os.O_RDWR)
OSError: [Errno 17] File exists

======================================================================
ERROR: test_iteritems (test.test_mailbox.TestMMDF)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 56, in setUp
    self._delete_recursively(self._path)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 46, in _delete_recursively
    os.remove(target)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: '@test'

======================================================================
ERROR: test_iterkeys (test.test_mailbox.TestMMDF)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 56, in setUp
    self._delete_recursively(self._path)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 46, in _delete_recursively
    os.remove(target)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: '@test'

======================================================================
ERROR: test_itervalues (test.test_mailbox.TestMMDF)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 56, in setUp
    self._delete_recursively(self._path)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 46, in _delete_recursively
    os.remove(target)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: '@test'

======================================================================
ERROR: test_keys (test.test_mailbox.TestMMDF)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 56, in setUp
    self._delete_recursively(self._path)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 46, in _delete_recursively
    os.remove(target)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: '@test'

======================================================================
ERROR: test_len (test.test_mailbox.TestMMDF)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 56, in setUp
    self._delete_recursively(self._path)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 46, in _delete_recursively
    os.remove(target)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: '@test'

======================================================================
ERROR: test_lock_conflict (test.test_mailbox.TestMMDF)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 56, in setUp
    self._delete_recursively(self._path)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 46, in _delete_recursively
    os.remove(target)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: '@test'

======================================================================
ERROR: test_lock_unlock (test.test_mailbox.TestMMDF)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 56, in setUp
    self._delete_recursively(self._path)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 46, in _delete_recursively
    os.remove(target)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: '@test'

======================================================================
ERROR: test_open_close_open (test.test_mailbox.TestMMDF)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 56, in setUp
    self._delete_recursively(self._path)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 46, in _delete_recursively
    os.remove(target)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: '@test'

======================================================================
ERROR: test_pop (test.test_mailbox.TestMMDF)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 56, in setUp
    self._delete_recursively(self._path)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 46, in _delete_recursively
    os.remove(target)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: '@test'

======================================================================
ERROR: test_popitem (test.test_mailbox.TestMMDF)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 56, in setUp
    self._delete_recursively(self._path)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 46, in _delete_recursively
    os.remove(target)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: '@test'

======================================================================
ERROR: test_relock (test.test_mailbox.TestMMDF)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 56, in setUp
    self._delete_recursively(self._path)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 46, in _delete_recursively
    os.remove(target)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: '@test'

======================================================================
ERROR: test_remove (test.test_mailbox.TestMMDF)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 56, in setUp
    self._delete_recursively(self._path)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 46, in _delete_recursively
    os.remove(target)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: '@test'

======================================================================
ERROR: test_set_item (test.test_mailbox.TestMMDF)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 56, in setUp
    self._delete_recursively(self._path)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 46, in _delete_recursively
    os.remove(target)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: '@test'

======================================================================
ERROR: test_update (test.test_mailbox.TestMMDF)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 56, in setUp
    self._delete_recursively(self._path)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 46, in _delete_recursively
    os.remove(target)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: '@test'

======================================================================
ERROR: test_values (test.test_mailbox.TestMMDF)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 56, in setUp
    self._delete_recursively(self._path)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 46, in _delete_recursively
    os.remove(target)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: '@test'

======================================================================
ERROR: test_add (test.test_mailbox.TestMH)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 56, in setUp
    self._delete_recursively(self._path)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 46, in _delete_recursively
    os.remove(target)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: '@test'

======================================================================
ERROR: test_add_and_remove_folders (test.test_mailbox.TestMH)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 56, in setUp
    self._delete_recursively(self._path)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 46, in _delete_recursively
    os.remove(target)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: '@test'

======================================================================
ERROR: test_clear (test.test_mailbox.TestMH)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 56, in setUp
    self._delete_recursively(self._path)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 46, in _delete_recursively
    os.remove(target)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: '@test'

======================================================================
ERROR: test_close (test.test_mailbox.TestMH)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 56, in setUp
    self._delete_recursively(self._path)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 46, in _delete_recursively
    os.remove(target)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: '@test'

======================================================================
ERROR: test_contains (test.test_mailbox.TestMH)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 56, in setUp
    self._delete_recursively(self._path)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 46, in _delete_recursively
    os.remove(target)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: '@test'

======================================================================
ERROR: test_delitem (test.test_mailbox.TestMH)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 56, in setUp
    self._delete_recursively(self._path)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 46, in _delete_recursively
    os.remove(target)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: '@test'

======================================================================
ERROR: test_discard (test.test_mailbox.TestMH)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 56, in setUp
    self._delete_recursively(self._path)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 46, in _delete_recursively
    os.remove(target)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: '@test'

======================================================================
ERROR: test_dump_message (test.test_mailbox.TestMH)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 56, in setUp
    self._delete_recursively(self._path)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 46, in _delete_recursively
    os.remove(target)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: '@test'

======================================================================
ERROR: test_flush (test.test_mailbox.TestMH)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 56, in setUp
    self._delete_recursively(self._path)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 46, in _delete_recursively
    os.remove(target)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: '@test'

======================================================================
ERROR: test_get (test.test_mailbox.TestMH)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 56, in setUp
    self._delete_recursively(self._path)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 46, in _delete_recursively
    os.remove(target)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: '@test'

======================================================================
ERROR: test_get_file (test.test_mailbox.TestMH)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 56, in setUp
    self._delete_recursively(self._path)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 46, in _delete_recursively
    os.remove(target)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: '@test'

======================================================================
ERROR: test_get_folder (test.test_mailbox.TestMH)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 56, in setUp
    self._delete_recursively(self._path)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 46, in _delete_recursively
    os.remove(target)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: '@test'

======================================================================
ERROR: test_get_message (test.test_mailbox.TestMH)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 56, in setUp
    self._delete_recursively(self._path)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 46, in _delete_recursively
    os.remove(target)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: '@test'

======================================================================
ERROR: test_get_string (test.test_mailbox.TestMH)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 56, in setUp
    self._delete_recursively(self._path)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 46, in _delete_recursively
    os.remove(target)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: '@test'

======================================================================
ERROR: test_getitem (test.test_mailbox.TestMH)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 56, in setUp
    self._delete_recursively(self._path)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 46, in _delete_recursively
    os.remove(target)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: '@test'

======================================================================
ERROR: test_items (test.test_mailbox.TestMH)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 56, in setUp
    self._delete_recursively(self._path)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 46, in _delete_recursively
    os.remove(target)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: '@test'

======================================================================
ERROR: test_iter (test.test_mailbox.TestMH)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 56, in setUp
    self._delete_recursively(self._path)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 46, in _delete_recursively
    os.remove(target)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: '@test'

======================================================================
ERROR: test_iteritems (test.test_mailbox.TestMH)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 56, in setUp
    self._delete_recursively(self._path)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 46, in _delete_recursively
    os.remove(target)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: '@test'

======================================================================
ERROR: test_iterkeys (test.test_mailbox.TestMH)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 56, in setUp
    self._delete_recursively(self._path)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 46, in _delete_recursively
    os.remove(target)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: '@test'

======================================================================
ERROR: test_itervalues (test.test_mailbox.TestMH)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 56, in setUp
    self._delete_recursively(self._path)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 46, in _delete_recursively
    os.remove(target)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: '@test'

======================================================================
ERROR: test_keys (test.test_mailbox.TestMH)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 56, in setUp
    self._delete_recursively(self._path)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 46, in _delete_recursively
    os.remove(target)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: '@test'

======================================================================
ERROR: test_len (test.test_mailbox.TestMH)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 56, in setUp
    self._delete_recursively(self._path)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 46, in _delete_recursively
    os.remove(target)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: '@test'

======================================================================
ERROR: test_list_folders (test.test_mailbox.TestMH)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 56, in setUp
    self._delete_recursively(self._path)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 46, in _delete_recursively
    os.remove(target)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: '@test'

======================================================================
ERROR: test_lock_unlock (test.test_mailbox.TestMH)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 56, in setUp
    self._delete_recursively(self._path)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 46, in _delete_recursively
    os.remove(target)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: '@test'

======================================================================
ERROR: test_pack (test.test_mailbox.TestMH)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 56, in setUp
    self._delete_recursively(self._path)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 46, in _delete_recursively
    os.remove(target)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: '@test'

======================================================================
ERROR: test_pop (test.test_mailbox.TestMH)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 56, in setUp
    self._delete_recursively(self._path)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 46, in _delete_recursively
    os.remove(target)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: '@test'

======================================================================
ERROR: test_popitem (test.test_mailbox.TestMH)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 56, in setUp
    self._delete_recursively(self._path)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 46, in _delete_recursively
    os.remove(target)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: '@test'

======================================================================
ERROR: test_remove (test.test_mailbox.TestMH)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 56, in setUp
    self._delete_recursively(self._path)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 46, in _delete_recursively
    os.remove(target)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: '@test'

======================================================================
ERROR: test_sequences (test.test_mailbox.TestMH)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 56, in setUp
    self._delete_recursively(self._path)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 46, in _delete_recursively
    os.remove(target)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: '@test'

======================================================================
ERROR: test_set_item (test.test_mailbox.TestMH)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 56, in setUp
    self._delete_recursively(self._path)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 46, in _delete_recursively
    os.remove(target)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: '@test'

======================================================================
ERROR: test_update (test.test_mailbox.TestMH)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 56, in setUp
    self._delete_recursively(self._path)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 46, in _delete_recursively
    os.remove(target)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: '@test'

======================================================================
ERROR: test_values (test.test_mailbox.TestMH)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 56, in setUp
    self._delete_recursively(self._path)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 46, in _delete_recursively
    os.remove(target)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: '@test'

======================================================================
ERROR: test_add (test.test_mailbox.TestBabyl)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 56, in setUp
    self._delete_recursively(self._path)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 46, in _delete_recursively
    os.remove(target)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: '@test'

======================================================================
ERROR: test_clear (test.test_mailbox.TestBabyl)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 56, in setUp
    self._delete_recursively(self._path)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 46, in _delete_recursively
    os.remove(target)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: '@test'

======================================================================
ERROR: test_close (test.test_mailbox.TestBabyl)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 56, in setUp
    self._delete_recursively(self._path)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 46, in _delete_recursively
    os.remove(target)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: '@test'

======================================================================
ERROR: test_contains (test.test_mailbox.TestBabyl)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 56, in setUp
    self._delete_recursively(self._path)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 46, in _delete_recursively
    os.remove(target)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: '@test'

======================================================================
ERROR: test_delitem (test.test_mailbox.TestBabyl)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 56, in setUp
    self._delete_recursively(self._path)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 46, in _delete_recursively
    os.remove(target)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: '@test'

======================================================================
ERROR: test_discard (test.test_mailbox.TestBabyl)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 56, in setUp
    self._delete_recursively(self._path)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 46, in _delete_recursively
    os.remove(target)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: '@test'

======================================================================
ERROR: test_dump_message (test.test_mailbox.TestBabyl)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 56, in setUp
    self._delete_recursively(self._path)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 46, in _delete_recursively
    os.remove(target)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: '@test'

======================================================================
ERROR: test_flush (test.test_mailbox.TestBabyl)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 56, in setUp
    self._delete_recursively(self._path)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 46, in _delete_recursively
    os.remove(target)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: '@test'

======================================================================
ERROR: test_get (test.test_mailbox.TestBabyl)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 56, in setUp
    self._delete_recursively(self._path)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 46, in _delete_recursively
    os.remove(target)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: '@test'

======================================================================
ERROR: test_get_file (test.test_mailbox.TestBabyl)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 56, in setUp
    self._delete_recursively(self._path)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 46, in _delete_recursively
    os.remove(target)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: '@test'

======================================================================
ERROR: test_get_message (test.test_mailbox.TestBabyl)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 56, in setUp
    self._delete_recursively(self._path)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 46, in _delete_recursively
    os.remove(target)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: '@test'

======================================================================
ERROR: test_get_string (test.test_mailbox.TestBabyl)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 56, in setUp
    self._delete_recursively(self._path)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 46, in _delete_recursively
    os.remove(target)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: '@test'

======================================================================
ERROR: test_getitem (test.test_mailbox.TestBabyl)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 56, in setUp
    self._delete_recursively(self._path)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 46, in _delete_recursively
    os.remove(target)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: '@test'

======================================================================
ERROR: test_items (test.test_mailbox.TestBabyl)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 56, in setUp
    self._delete_recursively(self._path)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 46, in _delete_recursively
    os.remove(target)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: '@test'

======================================================================
ERROR: test_iter (test.test_mailbox.TestBabyl)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 56, in setUp
    self._delete_recursively(self._path)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 46, in _delete_recursively
    os.remove(target)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: '@test'

======================================================================
ERROR: test_iteritems (test.test_mailbox.TestBabyl)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 56, in setUp
    self._delete_recursively(self._path)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 46, in _delete_recursively
    os.remove(target)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: '@test'

======================================================================
ERROR: test_iterkeys (test.test_mailbox.TestBabyl)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 56, in setUp
    self._delete_recursively(self._path)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 46, in _delete_recursively
    os.remove(target)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: '@test'

======================================================================
ERROR: test_itervalues (test.test_mailbox.TestBabyl)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 56, in setUp
    self._delete_recursively(self._path)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 46, in _delete_recursively
    os.remove(target)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: '@test'

======================================================================
ERROR: test_keys (test.test_mailbox.TestBabyl)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 56, in setUp
    self._delete_recursively(self._path)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 46, in _delete_recursively
    os.remove(target)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: '@test'

======================================================================
ERROR: test_labels (test.test_mailbox.TestBabyl)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 56, in setUp
    self._delete_recursively(self._path)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 46, in _delete_recursively
    os.remove(target)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: '@test'

======================================================================
ERROR: test_len (test.test_mailbox.TestBabyl)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 56, in setUp
    self._delete_recursively(self._path)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 46, in _delete_recursively
    os.remove(target)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: '@test'

======================================================================
ERROR: test_lock_unlock (test.test_mailbox.TestBabyl)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 56, in setUp
    self._delete_recursively(self._path)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 46, in _delete_recursively
    os.remove(target)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: '@test'

======================================================================
ERROR: test_pop (test.test_mailbox.TestBabyl)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 56, in setUp
    self._delete_recursively(self._path)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 46, in _delete_recursively
    os.remove(target)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: '@test'

======================================================================
ERROR: test_popitem (test.test_mailbox.TestBabyl)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 56, in setUp
    self._delete_recursively(self._path)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 46, in _delete_recursively
    os.remove(target)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: '@test'

======================================================================
ERROR: test_remove (test.test_mailbox.TestBabyl)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 56, in setUp
    self._delete_recursively(self._path)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 46, in _delete_recursively
    os.remove(target)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: '@test'

======================================================================
ERROR: test_set_item (test.test_mailbox.TestBabyl)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 56, in setUp
    self._delete_recursively(self._path)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 46, in _delete_recursively
    os.remove(target)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: '@test'

======================================================================
ERROR: test_update (test.test_mailbox.TestBabyl)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 56, in setUp
    self._delete_recursively(self._path)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 46, in _delete_recursively
    os.remove(target)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: '@test'

======================================================================
ERROR: test_values (test.test_mailbox.TestBabyl)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 56, in setUp
    self._delete_recursively(self._path)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 46, in _delete_recursively
    os.remove(target)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: '@test'

======================================================================
ERROR: test_become_message (test.test_mailbox.TestMessage)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 970, in tearDown
    self._delete_recursively(self._path)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 46, in _delete_recursively
    os.remove(target)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: '@test'

======================================================================
ERROR: test_explain_to (test.test_mailbox.TestMessage)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 970, in tearDown
    self._delete_recursively(self._path)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 46, in _delete_recursively
    os.remove(target)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: '@test'

======================================================================
ERROR: test_initialize_incorrectly (test.test_mailbox.TestMessage)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 970, in tearDown
    self._delete_recursively(self._path)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 46, in _delete_recursively
    os.remove(target)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: '@test'

======================================================================
ERROR: test_initialize_with_eMM (test.test_mailbox.TestMessage)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 970, in tearDown
    self._delete_recursively(self._path)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 46, in _delete_recursively
    os.remove(target)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: '@test'

======================================================================
ERROR: test_initialize_with_file (test.test_mailbox.TestMessage)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 970, in tearDown
    self._delete_recursively(self._path)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 46, in _delete_recursively
    os.remove(target)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: '@test'

======================================================================
ERROR: test_initialize_with_nothing (test.test_mailbox.TestMessage)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 970, in tearDown
    self._delete_recursively(self._path)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 46, in _delete_recursively
    os.remove(target)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: '@test'

======================================================================
ERROR: test_initialize_with_string (test.test_mailbox.TestMessage)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 970, in tearDown
    self._delete_recursively(self._path)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 46, in _delete_recursively
    os.remove(target)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: '@test'

======================================================================
ERROR: test_become_message (test.test_mailbox.TestMaildirMessage)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 970, in tearDown
    self._delete_recursively(self._path)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 46, in _delete_recursively
    os.remove(target)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: '@test'

======================================================================
ERROR: test_date (test.test_mailbox.TestMaildirMessage)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 970, in tearDown
    self._delete_recursively(self._path)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 46, in _delete_recursively
    os.remove(target)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: '@test'

======================================================================
ERROR: test_explain_to (test.test_mailbox.TestMaildirMessage)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 970, in tearDown
    self._delete_recursively(self._path)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 46, in _delete_recursively
    os.remove(target)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: '@test'

======================================================================
ERROR: test_flags (test.test_mailbox.TestMaildirMessage)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 970, in tearDown
    self._delete_recursively(self._path)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 46, in _delete_recursively
    os.remove(target)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: '@test'

======================================================================
ERROR: test_info (test.test_mailbox.TestMaildirMessage)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 970, in tearDown
    self._delete_recursively(self._path)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 46, in _delete_recursively
    os.remove(target)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: '@test'

======================================================================
ERROR: test_info_and_flags (test.test_mailbox.TestMaildirMessage)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 970, in tearDown
    self._delete_recursively(self._path)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 46, in _delete_recursively
    os.remove(target)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: '@test'

======================================================================
ERROR: test_initialize_incorrectly (test.test_mailbox.TestMaildirMessage)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 970, in tearDown
    self._delete_recursively(self._path)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 46, in _delete_recursively
    os.remove(target)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: '@test'

======================================================================
ERROR: test_initialize_with_eMM (test.test_mailbox.TestMaildirMessage)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 970, in tearDown
    self._delete_recursively(self._path)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 46, in _delete_recursively
    os.remove(target)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: '@test'

======================================================================
ERROR: test_initialize_with_file (test.test_mailbox.TestMaildirMessage)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 970, in tearDown
    self._delete_recursively(self._path)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 46, in _delete_recursively
    os.remove(target)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: '@test'

======================================================================
ERROR: test_initialize_with_nothing (test.test_mailbox.TestMaildirMessage)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 970, in tearDown
    self._delete_recursively(self._path)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 46, in _delete_recursively
    os.remove(target)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: '@test'

======================================================================
ERROR: test_initialize_with_string (test.test_mailbox.TestMaildirMessage)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 970, in tearDown
    self._delete_recursively(self._path)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 46, in _delete_recursively
    os.remove(target)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: '@test'

======================================================================
ERROR: test_subdir (test.test_mailbox.TestMaildirMessage)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 970, in tearDown
    self._delete_recursively(self._path)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 46, in _delete_recursively
    os.remove(target)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: '@test'

======================================================================
ERROR: test_become_message (test.test_mailbox.TestMboxMessage)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 970, in tearDown
    self._delete_recursively(self._path)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 46, in _delete_recursively
    os.remove(target)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: '@test'

======================================================================
ERROR: test_explain_to (test.test_mailbox.TestMboxMessage)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 970, in tearDown
    self._delete_recursively(self._path)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 46, in _delete_recursively
    os.remove(target)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: '@test'

======================================================================
ERROR: test_flags (test.test_mailbox.TestMboxMessage)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 970, in tearDown
    self._delete_recursively(self._path)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 46, in _delete_recursively
    os.remove(target)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: '@test'

======================================================================
ERROR: test_from (test.test_mailbox.TestMboxMessage)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 970, in tearDown
    self._delete_recursively(self._path)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 46, in _delete_recursively
    os.remove(target)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: '@test'

======================================================================
ERROR: test_initialize_incorrectly (test.test_mailbox.TestMboxMessage)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 970, in tearDown
    self._delete_recursively(self._path)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 46, in _delete_recursively
    os.remove(target)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: '@test'

======================================================================
ERROR: test_initialize_with_eMM (test.test_mailbox.TestMboxMessage)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 970, in tearDown
    self._delete_recursively(self._path)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 46, in _delete_recursively
    os.remove(target)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: '@test'

======================================================================
ERROR: test_initialize_with_file (test.test_mailbox.TestMboxMessage)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 970, in tearDown
    self._delete_recursively(self._path)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 46, in _delete_recursively
    os.remove(target)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: '@test'

======================================================================
ERROR: test_initialize_with_nothing (test.test_mailbox.TestMboxMessage)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 970, in tearDown
    self._delete_recursively(self._path)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 46, in _delete_recursively
    os.remove(target)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: '@test'

======================================================================
ERROR: test_initialize_with_string (test.test_mailbox.TestMboxMessage)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 970, in tearDown
    self._delete_recursively(self._path)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 46, in _delete_recursively
    os.remove(target)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: '@test'

======================================================================
ERROR: test_initialize_with_unixfrom (test.test_mailbox.TestMboxMessage)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 970, in tearDown
    self._delete_recursively(self._path)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 46, in _delete_recursively
    os.remove(target)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: '@test'

======================================================================
ERROR: test_become_message (test.test_mailbox.TestMHMessage)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 970, in tearDown
    self._delete_recursively(self._path)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 46, in _delete_recursively
    os.remove(target)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: '@test'

======================================================================
ERROR: test_explain_to (test.test_mailbox.TestMHMessage)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 970, in tearDown
    self._delete_recursively(self._path)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 46, in _delete_recursively
    os.remove(target)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: '@test'

======================================================================
ERROR: test_initialize_incorrectly (test.test_mailbox.TestMHMessage)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 970, in tearDown
    self._delete_recursively(self._path)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 46, in _delete_recursively
    os.remove(target)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: '@test'

======================================================================
ERROR: test_initialize_with_eMM (test.test_mailbox.TestMHMessage)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 970, in tearDown
    self._delete_recursively(self._path)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 46, in _delete_recursively
    os.remove(target)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: '@test'

======================================================================
ERROR: test_initialize_with_file (test.test_mailbox.TestMHMessage)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 970, in tearDown
    self._delete_recursively(self._path)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 46, in _delete_recursively
    os.remove(target)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: '@test'

======================================================================
ERROR: test_initialize_with_nothing (test.test_mailbox.TestMHMessage)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 970, in tearDown
    self._delete_recursively(self._path)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 46, in _delete_recursively
    os.remove(target)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: '@test'

======================================================================
ERROR: test_initialize_with_string (test.test_mailbox.TestMHMessage)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 970, in tearDown
    self._delete_recursively(self._path)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 46, in _delete_recursively
    os.remove(target)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: '@test'

======================================================================
ERROR: test_sequences (test.test_mailbox.TestMHMessage)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 970, in tearDown
    self._delete_recursively(self._path)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 46, in _delete_recursively
    os.remove(target)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: '@test'

======================================================================
ERROR: test_become_message (test.test_mailbox.TestBabylMessage)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 970, in tearDown
    self._delete_recursively(self._path)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 46, in _delete_recursively
    os.remove(target)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: '@test'

======================================================================
ERROR: test_explain_to (test.test_mailbox.TestBabylMessage)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 970, in tearDown
    self._delete_recursively(self._path)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 46, in _delete_recursively
    os.remove(target)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: '@test'

======================================================================
ERROR: test_initialize_incorrectly (test.test_mailbox.TestBabylMessage)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 970, in tearDown
    self._delete_recursively(self._path)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 46, in _delete_recursively
    os.remove(target)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: '@test'

======================================================================
ERROR: test_initialize_with_eMM (test.test_mailbox.TestBabylMessage)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 970, in tearDown
    self._delete_recursively(self._path)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 46, in _delete_recursively
    os.remove(target)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: '@test'

======================================================================
ERROR: test_initialize_with_file (test.test_mailbox.TestBabylMessage)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 970, in tearDown
    self._delete_recursively(self._path)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 46, in _delete_recursively
    os.remove(target)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: '@test'

======================================================================
ERROR: test_initialize_with_nothing (test.test_mailbox.TestBabylMessage)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 970, in tearDown
    self._delete_recursively(self._path)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 46, in _delete_recursively
    os.remove(target)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: '@test'

======================================================================
ERROR: test_initialize_with_string (test.test_mailbox.TestBabylMessage)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 970, in tearDown
    self._delete_recursively(self._path)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 46, in _delete_recursively
    os.remove(target)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: '@test'

======================================================================
ERROR: test_labels (test.test_mailbox.TestBabylMessage)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 970, in tearDown
    self._delete_recursively(self._path)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 46, in _delete_recursively
    os.remove(target)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: '@test'

======================================================================
ERROR: test_visible (test.test_mailbox.TestBabylMessage)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 970, in tearDown
    self._delete_recursively(self._path)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 46, in _delete_recursively
    os.remove(target)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: '@test'

======================================================================
ERROR: test_become_message (test.test_mailbox.TestMMDFMessage)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 970, in tearDown
    self._delete_recursively(self._path)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 46, in _delete_recursively
    os.remove(target)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: '@test'

======================================================================
ERROR: test_explain_to (test.test_mailbox.TestMMDFMessage)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 970, in tearDown
    self._delete_recursively(self._path)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 46, in _delete_recursively
    os.remove(target)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: '@test'

======================================================================
ERROR: test_flags (test.test_mailbox.TestMMDFMessage)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 970, in tearDown
    self._delete_recursively(self._path)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 46, in _delete_recursively
    os.remove(target)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: '@test'

======================================================================
ERROR: test_from (test.test_mailbox.TestMMDFMessage)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 970, in tearDown
    self._delete_recursively(self._path)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 46, in _delete_recursively
    os.remove(target)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: '@test'

======================================================================
ERROR: test_initialize_incorrectly (test.test_mailbox.TestMMDFMessage)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 970, in tearDown
    self._delete_recursively(self._path)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 46, in _delete_recursively
    os.remove(target)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: '@test'

======================================================================
ERROR: test_initialize_with_eMM (test.test_mailbox.TestMMDFMessage)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 970, in tearDown
    self._delete_recursively(self._path)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 46, in _delete_recursively
    os.remove(target)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: '@test'

======================================================================
ERROR: test_initialize_with_file (test.test_mailbox.TestMMDFMessage)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 970, in tearDown
    self._delete_recursively(self._path)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 46, in _delete_recursively
    os.remove(target)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: '@test'

======================================================================
ERROR: test_initialize_with_nothing (test.test_mailbox.TestMMDFMessage)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 970, in tearDown
    self._delete_recursively(self._path)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 46, in _delete_recursively
    os.remove(target)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: '@test'

======================================================================
ERROR: test_initialize_with_string (test.test_mailbox.TestMMDFMessage)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 970, in tearDown
    self._delete_recursively(self._path)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 46, in _delete_recursively
    os.remove(target)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: '@test'

======================================================================
ERROR: test_initialize_with_unixfrom (test.test_mailbox.TestMMDFMessage)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 970, in tearDown
    self._delete_recursively(self._path)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 46, in _delete_recursively
    os.remove(target)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: '@test'

======================================================================
ERROR: test_close (test.test_mailbox.TestProxyFile)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 1588, in tearDown
    self._delete_recursively(self._path)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 46, in _delete_recursively
    os.remove(target)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: '@test'

======================================================================
ERROR: test_initialize (test.test_mailbox.TestProxyFile)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 1588, in tearDown
    self._delete_recursively(self._path)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 46, in _delete_recursively
    os.remove(target)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: '@test'

======================================================================
ERROR: test_iteration (test.test_mailbox.TestProxyFile)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 1588, in tearDown
    self._delete_recursively(self._path)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 46, in _delete_recursively
    os.remove(target)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: '@test'

======================================================================
ERROR: test_read (test.test_mailbox.TestProxyFile)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 1588, in tearDown
    self._delete_recursively(self._path)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 46, in _delete_recursively
    os.remove(target)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: '@test'

======================================================================
ERROR: test_readline (test.test_mailbox.TestProxyFile)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 1588, in tearDown
    self._delete_recursively(self._path)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 46, in _delete_recursively
    os.remove(target)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: '@test'

======================================================================
ERROR: test_readlines (test.test_mailbox.TestProxyFile)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 1588, in tearDown
    self._delete_recursively(self._path)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 46, in _delete_recursively
    os.remove(target)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: '@test'

======================================================================
ERROR: test_seek_and_tell (test.test_mailbox.TestProxyFile)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 1588, in tearDown
    self._delete_recursively(self._path)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 46, in _delete_recursively
    os.remove(target)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: '@test'

======================================================================
ERROR: test_close (test.test_mailbox.TestPartialFile)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 1637, in tearDown
    self._delete_recursively(self._path)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 46, in _delete_recursively
    os.remove(target)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: '@test'

======================================================================
ERROR: test_initialize (test.test_mailbox.TestPartialFile)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 1637, in tearDown
    self._delete_recursively(self._path)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 46, in _delete_recursively
    os.remove(target)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: '@test'

======================================================================
ERROR: test_iteration (test.test_mailbox.TestPartialFile)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 1637, in tearDown
    self._delete_recursively(self._path)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 46, in _delete_recursively
    os.remove(target)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: '@test'

======================================================================
ERROR: test_read (test.test_mailbox.TestPartialFile)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 1637, in tearDown
    self._delete_recursively(self._path)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 46, in _delete_recursively
    os.remove(target)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: '@test'

======================================================================
ERROR: test_readline (test.test_mailbox.TestPartialFile)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 1637, in tearDown
    self._delete_recursively(self._path)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 46, in _delete_recursively
    os.remove(target)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: '@test'

======================================================================
ERROR: test_readlines (test.test_mailbox.TestPartialFile)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 1637, in tearDown
    self._delete_recursively(self._path)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 46, in _delete_recursively
    os.remove(target)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: '@test'

======================================================================
ERROR: test_seek_and_tell (test.test_mailbox.TestPartialFile)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 1637, in tearDown
    self._delete_recursively(self._path)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 46, in _delete_recursively
    os.remove(target)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: '@test'

======================================================================
ERROR: Test an empty maildir mailbox
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 1696, in setUp
    os.mkdir(self._dir)
WindowsError: [Error 183] Cannot create a file when that file already exists: '@test'

======================================================================
ERROR: test_nonempty_maildir_both (test.test_mailbox.MaildirTestCase)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 1696, in setUp
    os.mkdir(self._dir)
WindowsError: [Error 183] Cannot create a file when that file already exists: '@test'

======================================================================
ERROR: test_nonempty_maildir_cur (test.test_mailbox.MaildirTestCase)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 1696, in setUp
    os.mkdir(self._dir)
WindowsError: [Error 183] Cannot create a file when that file already exists: '@test'

======================================================================
ERROR: test_nonempty_maildir_new (test.test_mailbox.MaildirTestCase)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mailbox.py", line 1696, in setUp
    os.mkdir(self._dir)
WindowsError: [Error 183] Cannot create a file when that file already exists: '@test'

======================================================================
ERROR: test_floats (test.test_marshal.FloatTestCase)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_marshal.py", line 72, in test_floats
    self.helper(float(expected))
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_marshal.py", line 14, in helper
    f = open(test_support.TESTFN, "wb")
  File "C:\buildbot\work\3.0.heller-windows\build\lib\io.py", line 280, in __new__
    return open(*args, **kwargs)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\io.py", line 219, in open
    closefd)
IOError: [Errno 13] Permission denied: '@test'

======================================================================
ERROR: test_bytes (test.test_marshal.StringTestCase)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_marshal.py", line 103, in test_bytes
    self.helper(s)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_marshal.py", line 14, in helper
    f = open(test_support.TESTFN, "wb")
  File "C:\buildbot\work\3.0.heller-windows\build\lib\io.py", line 280, in __new__
    return open(*args, **kwargs)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\io.py", line 219, in open
    closefd)
IOError: [Errno 13] Permission denied: '@test'

======================================================================
ERROR: test_string (test.test_marshal.StringTestCase)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_marshal.py", line 99, in test_string
    self.helper(s)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_marshal.py", line 14, in helper
    f = open(test_support.TESTFN, "wb")
  File "C:\buildbot\work\3.0.heller-windows\build\lib\io.py", line 280, in __new__
    return open(*args, **kwargs)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\io.py", line 219, in open
    closefd)
IOError: [Errno 13] Permission denied: '@test'

======================================================================
ERROR: test_unicode (test.test_marshal.StringTestCase)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_marshal.py", line 95, in test_unicode
    self.helper(marshal.loads(marshal.dumps(s)))
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_marshal.py", line 14, in helper
    f = open(test_support.TESTFN, "wb")
  File "C:\buildbot\work\3.0.heller-windows\build\lib\io.py", line 280, in __new__
    return open(*args, **kwargs)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\io.py", line 219, in open
    closefd)
IOError: [Errno 13] Permission denied: '@test'

======================================================================
ERROR: test_dict (test.test_marshal.ContainerTestCase)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_marshal.py", line 128, in test_dict
    self.helper(self.d)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_marshal.py", line 14, in helper
    f = open(test_support.TESTFN, "wb")
  File "C:\buildbot\work\3.0.heller-windows\build\lib\io.py", line 280, in __new__
    return open(*args, **kwargs)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\io.py", line 219, in open
    closefd)
IOError: [Errno 13] Permission denied: '@test'

======================================================================
ERROR: test_list (test.test_marshal.ContainerTestCase)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_marshal.py", line 131, in test_list
    self.helper(list(self.d.items()))
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_marshal.py", line 14, in helper
    f = open(test_support.TESTFN, "wb")
  File "C:\buildbot\work\3.0.heller-windows\build\lib\io.py", line 280, in __new__
    return open(*args, **kwargs)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\io.py", line 219, in open
    closefd)
IOError: [Errno 13] Permission denied: '@test'

======================================================================
ERROR: test_sets (test.test_marshal.ContainerTestCase)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_marshal.py", line 138, in test_sets
    self.helper(constructor(self.d.keys()))
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_marshal.py", line 14, in helper
    f = open(test_support.TESTFN, "wb")
  File "C:\buildbot\work\3.0.heller-windows\build\lib\io.py", line 280, in __new__
    return open(*args, **kwargs)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\io.py", line 219, in open
    closefd)
IOError: [Errno 13] Permission denied: '@test'

======================================================================
ERROR: test_tuple (test.test_marshal.ContainerTestCase)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_marshal.py", line 134, in test_tuple
    self.helper(tuple(self.d.keys()))
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_marshal.py", line 14, in helper
    f = open(test_support.TESTFN, "wb")
  File "C:\buildbot\work\3.0.heller-windows\build\lib\io.py", line 280, in __new__
    return open(*args, **kwargs)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\io.py", line 219, in open
    closefd)
IOError: [Errno 13] Permission denied: '@test'

======================================================================
ERROR: test_access_parameter (test.test_mmap.MmapTests)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mmap.py", line 113, in test_access_parameter
    open(TESTFN, "wb").write(b"a"*mapsize)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\io.py", line 280, in __new__
    return open(*args, **kwargs)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\io.py", line 219, in open
    closefd)
IOError: [Errno 13] Permission denied: '@test'

======================================================================
ERROR: test_basic (test.test_mmap.MmapTests)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mmap.py", line 24, in test_basic
    f = open(TESTFN, 'bw+')
  File "C:\buildbot\work\3.0.heller-windows\build\lib\io.py", line 280, in __new__
    return open(*args, **kwargs)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\io.py", line 219, in open
    closefd)
IOError: [Errno 13] Permission denied: '@test'

======================================================================
ERROR: test_double_close (test.test_mmap.MmapTests)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_mmap.py", line 295, in test_double_close
    f = open(TESTFN, 'wb+')
  File "C:\buildbot\work\3.0.heller-windows\build\lib\io.py", line 280, in __new__
    return open(*args, **kwargs)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\io.py", line 219, in open
    closefd)
IOError: [Errno 13] Permission denied: '@test'

======================================================================
ERROR: test_bug1728403 (test.test_multibytecodec.Test_StreamReader)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_multibytecodec.py", line 143, in test_bug1728403
    f = open(TESTFN, 'wb')
  File "C:\buildbot\work\3.0.heller-windows\build\lib\io.py", line 280, in __new__
    return open(*args, **kwargs)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\io.py", line 219, in open
    closefd)
IOError: [Errno 13] Permission denied: '@test'

======================================================================
ERROR: test_directory (test.test_pep277.UnicodeFileTests)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_pep277.py", line 39, in setUp
    f = open(name, 'wb')
  File "C:\buildbot\work\3.0.heller-windows\build\lib\io.py", line 280, in __new__
    return open(*args, **kwargs)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\io.py", line 219, in open
    closefd)
IOError: [Errno 13] Permission denied: '@test\\abc'

======================================================================
ERROR: test_failures (test.test_pep277.UnicodeFileTests)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_pep277.py", line 39, in setUp
    f = open(name, 'wb')
  File "C:\buildbot\work\3.0.heller-windows\build\lib\io.py", line 280, in __new__
    return open(*args, **kwargs)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\io.py", line 219, in open
    closefd)
IOError: [Errno 13] Permission denied: '@test\\abc'

======================================================================
ERROR: test_listdir (test.test_pep277.UnicodeFileTests)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_pep277.py", line 39, in setUp
    f = open(name, 'wb')
  File "C:\buildbot\work\3.0.heller-windows\build\lib\io.py", line 280, in __new__
    return open(*args, **kwargs)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\io.py", line 219, in open
    closefd)
IOError: [Errno 13] Permission denied: '@test\\abc'

======================================================================
ERROR: test_open (test.test_pep277.UnicodeFileTests)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_pep277.py", line 39, in setUp
    f = open(name, 'wb')
  File "C:\buildbot\work\3.0.heller-windows\build\lib\io.py", line 280, in __new__
    return open(*args, **kwargs)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\io.py", line 219, in open
    closefd)
IOError: [Errno 13] Permission denied: '@test\\abc'

======================================================================
ERROR: test_rename (test.test_pep277.UnicodeFileTests)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_pep277.py", line 39, in setUp
    f = open(name, 'wb')
  File "C:\buildbot\work\3.0.heller-windows\build\lib\io.py", line 280, in __new__
    return open(*args, **kwargs)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\io.py", line 219, in open
    closefd)
IOError: [Errno 13] Permission denied: '@test\\abc'

======================================================================
ERROR: test_getdata_zipfile (test.test_pkgutil.PkgutilTests)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_pkgutil.py", line 67, in test_getdata_zipfile
    z.writestr(pkg + '/res.txt', RESOURCE_DATA)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 1015, in writestr
    self._writecheck(zinfo)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 919, in _writecheck
    raise LargeZipFile("Filesize would require ZIP64 extensions")
zipfile.LargeZipFile: Filesize would require ZIP64 extensions

======================================================================
ERROR: test_getdata_zipfile (test.test_pkgutil.PkgutilTests)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_pkgutil.py", line 22, in tearDown
    shutil.rmtree(self.dirname)
  File "c:\buildbot\work\3.0.heller-windows\build\lib\shutil.py", line 184, in rmtree
    onerror(os.remove, fullname, sys.exc_info())
  File "c:\buildbot\work\3.0.heller-windows\build\lib\shutil.py", line 182, in rmtree
    os.remove(fullname)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: 'c:\\docume~1\\theller\\locals~1\\temp\\tmpe_4jv7\\test_getdata_zipfile.zip'

======================================================================
FAIL: test_s_option (test.test_site.HelperFunctionsTests)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_site.py", line 105, in test_s_option
    self.assertEqual(rc, 1)
AssertionError: 0 != 1

======================================================================
ERROR: test_at_least_import_untested_modules (test.test_sundry.TestUntestedModules)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_sundry.py", line 80, in test_at_least_import_untested_modules
    import xml
  File "C:\buildbot\work\3.0.heller-windows\build\lib\contextlib.py", line 34, in __exit__
    self.gen.throw(type, value, traceback)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_support.py", line 406, in catch_warning
    yield warning_obj if record else None
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_sundry.py", line 44, in test_at_least_import_untested_modules
    import distutils.command.register
  File "C:\buildbot\work\3.0.heller-windows\build\lib\distutils\command\register.py", line 11, in <module>
    import io, ConfigParser
ImportError: No module named ConfigParser

======================================================================
ERROR: test_fileno (test.test_urllib.urlopen_FileTests)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_urllib.py", line 30, in setUp
    FILE = open(test_support.TESTFN, 'wb')
  File "C:\buildbot\work\3.0.heller-windows\build\lib\io.py", line 280, in __new__
    return open(*args, **kwargs)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\io.py", line 219, in open
    closefd)
IOError: [Errno 13] Permission denied: '@test'

======================================================================
ERROR: test_getcode (test.test_urllib.urlopen_FileTests)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_urllib.py", line 30, in setUp
    FILE = open(test_support.TESTFN, 'wb')
  File "C:\buildbot\work\3.0.heller-windows\build\lib\io.py", line 280, in __new__
    return open(*args, **kwargs)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\io.py", line 219, in open
    closefd)
IOError: [Errno 13] Permission denied: '@test'

======================================================================
ERROR: test_geturl (test.test_urllib.urlopen_FileTests)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_urllib.py", line 30, in setUp
    FILE = open(test_support.TESTFN, 'wb')
  File "C:\buildbot\work\3.0.heller-windows\build\lib\io.py", line 280, in __new__
    return open(*args, **kwargs)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\io.py", line 219, in open
    closefd)
IOError: [Errno 13] Permission denied: '@test'

======================================================================
ERROR: test_info (test.test_urllib.urlopen_FileTests)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_urllib.py", line 30, in setUp
    FILE = open(test_support.TESTFN, 'wb')
  File "C:\buildbot\work\3.0.heller-windows\build\lib\io.py", line 280, in __new__
    return open(*args, **kwargs)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\io.py", line 219, in open
    closefd)
IOError: [Errno 13] Permission denied: '@test'

======================================================================
ERROR: test_interface (test.test_urllib.urlopen_FileTests)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_urllib.py", line 30, in setUp
    FILE = open(test_support.TESTFN, 'wb')
  File "C:\buildbot\work\3.0.heller-windows\build\lib\io.py", line 280, in __new__
    return open(*args, **kwargs)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\io.py", line 219, in open
    closefd)
IOError: [Errno 13] Permission denied: '@test'

======================================================================
ERROR: test_iter (test.test_urllib.urlopen_FileTests)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_urllib.py", line 30, in setUp
    FILE = open(test_support.TESTFN, 'wb')
  File "C:\buildbot\work\3.0.heller-windows\build\lib\io.py", line 280, in __new__
    return open(*args, **kwargs)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\io.py", line 219, in open
    closefd)
IOError: [Errno 13] Permission denied: '@test'

======================================================================
ERROR: test_read (test.test_urllib.urlopen_FileTests)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_urllib.py", line 30, in setUp
    FILE = open(test_support.TESTFN, 'wb')
  File "C:\buildbot\work\3.0.heller-windows\build\lib\io.py", line 280, in __new__
    return open(*args, **kwargs)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\io.py", line 219, in open
    closefd)
IOError: [Errno 13] Permission denied: '@test'

======================================================================
ERROR: test_readline (test.test_urllib.urlopen_FileTests)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_urllib.py", line 30, in setUp
    FILE = open(test_support.TESTFN, 'wb')
  File "C:\buildbot\work\3.0.heller-windows\build\lib\io.py", line 280, in __new__
    return open(*args, **kwargs)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\io.py", line 219, in open
    closefd)
IOError: [Errno 13] Permission denied: '@test'

======================================================================
ERROR: test_readlines (test.test_urllib.urlopen_FileTests)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_urllib.py", line 30, in setUp
    FILE = open(test_support.TESTFN, 'wb')
  File "C:\buildbot\work\3.0.heller-windows\build\lib\io.py", line 280, in __new__
    return open(*args, **kwargs)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\io.py", line 219, in open
    closefd)
IOError: [Errno 13] Permission denied: '@test'

======================================================================
ERROR: test_basic (test.test_urllib.urlretrieve_FileTests)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_urllib.py", line 169, in setUp
    FILE = open(test_support.TESTFN, 'wb')
  File "C:\buildbot\work\3.0.heller-windows\build\lib\io.py", line 280, in __new__
    return open(*args, **kwargs)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\io.py", line 219, in open
    closefd)
IOError: [Errno 13] Permission denied: '@test'

======================================================================
ERROR: test_copy (test.test_urllib.urlretrieve_FileTests)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_urllib.py", line 169, in setUp
    FILE = open(test_support.TESTFN, 'wb')
  File "C:\buildbot\work\3.0.heller-windows\build\lib\io.py", line 280, in __new__
    return open(*args, **kwargs)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\io.py", line 219, in open
    closefd)
IOError: [Errno 13] Permission denied: '@test'

======================================================================
ERROR: test_reporthook (test.test_urllib.urlretrieve_FileTests)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_urllib.py", line 169, in setUp
    FILE = open(test_support.TESTFN, 'wb')
  File "C:\buildbot\work\3.0.heller-windows\build\lib\io.py", line 280, in __new__
    return open(*args, **kwargs)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\io.py", line 219, in open
    closefd)
IOError: [Errno 13] Permission denied: '@test'

======================================================================
ERROR: test_reporthook_0_bytes (test.test_urllib.urlretrieve_FileTests)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_urllib.py", line 169, in setUp
    FILE = open(test_support.TESTFN, 'wb')
  File "C:\buildbot\work\3.0.heller-windows\build\lib\io.py", line 280, in __new__
    return open(*args, **kwargs)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\io.py", line 219, in open
    closefd)
IOError: [Errno 13] Permission denied: '@test'

======================================================================
ERROR: test_reporthook_5_bytes (test.test_urllib.urlretrieve_FileTests)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_urllib.py", line 169, in setUp
    FILE = open(test_support.TESTFN, 'wb')
  File "C:\buildbot\work\3.0.heller-windows\build\lib\io.py", line 280, in __new__
    return open(*args, **kwargs)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\io.py", line 219, in open
    closefd)
IOError: [Errno 13] Permission denied: '@test'

======================================================================
ERROR: test_reporthook_8193_bytes (test.test_urllib.urlretrieve_FileTests)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_urllib.py", line 169, in setUp
    FILE = open(test_support.TESTFN, 'wb')
  File "C:\buildbot\work\3.0.heller-windows\build\lib\io.py", line 280, in __new__
    return open(*args, **kwargs)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\io.py", line 219, in open
    closefd)
IOError: [Errno 13] Permission denied: '@test'

======================================================================
ERROR: test_file (test.test_urllib2.HandlerTests)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_urllib2.py", line 607, in test_file
    f = open(TESTFN, "wb")
  File "C:\buildbot\work\3.0.heller-windows\build\lib\io.py", line 280, in __new__
    return open(*args, **kwargs)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\io.py", line 219, in open
    closefd)
IOError: [Errno 13] Permission denied: '@test'

======================================================================
ERROR: testAbsoluteArcnames (test.test_zipfile.TestsWithSourceFile)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipfile.py", line 233, in testAbsoluteArcnames
    zipfp.write(TESTFN, "/absolute")
  File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 952, in write
    self._writecheck(zinfo)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 919, in _writecheck
    raise LargeZipFile("Filesize would require ZIP64 extensions")
zipfile.LargeZipFile: Filesize would require ZIP64 extensions

======================================================================
ERROR: testAbsoluteArcnames (test.test_zipfile.TestsWithSourceFile)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipfile.py", line 351, in tearDown
    os.remove(TESTFN2)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: '@test2'

======================================================================
ERROR: testAppendToNonZipFile (test.test_zipfile.TestsWithSourceFile)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipfile.py", line 259, in testAppendToNonZipFile
    zipfp.write(TESTFN, TESTFN)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 952, in write
    self._writecheck(zinfo)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 919, in _writecheck
    raise LargeZipFile("Filesize would require ZIP64 extensions")
zipfile.LargeZipFile: Filesize would require ZIP64 extensions

======================================================================
ERROR: testAppendToNonZipFile (test.test_zipfile.TestsWithSourceFile)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipfile.py", line 351, in tearDown
    os.remove(TESTFN2)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: '@test2'

======================================================================
ERROR: testAppendToZipFile (test.test_zipfile.TestsWithSourceFile)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipfile.py", line 30, in setUp
    fp = open(TESTFN, "wb")
  File "C:\buildbot\work\3.0.heller-windows\build\lib\io.py", line 280, in __new__
    return open(*args, **kwargs)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\io.py", line 219, in open
    closefd)
IOError: [Errno 13] Permission denied: '@test'

======================================================================
ERROR: testDeflated (test.test_zipfile.TestsWithSourceFile)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipfile.py", line 30, in setUp
    fp = open(TESTFN, "wb")
  File "C:\buildbot\work\3.0.heller-windows\build\lib\io.py", line 280, in __new__
    return open(*args, **kwargs)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\io.py", line 219, in open
    closefd)
IOError: [Errno 13] Permission denied: '@test'

======================================================================
ERROR: testExtract (test.test_zipfile.TestsWithSourceFile)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipfile.py", line 30, in setUp
    fp = open(TESTFN, "wb")
  File "C:\buildbot\work\3.0.heller-windows\build\lib\io.py", line 280, in __new__
    return open(*args, **kwargs)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\io.py", line 219, in open
    closefd)
IOError: [Errno 13] Permission denied: '@test'

======================================================================
ERROR: testExtractAll (test.test_zipfile.TestsWithSourceFile)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipfile.py", line 329, in testExtractAll
    zipfp.writestr(fpath, fdata)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 1015, in writestr
    self._writecheck(zinfo)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 919, in _writecheck
    raise LargeZipFile("Filesize would require ZIP64 extensions")
zipfile.LargeZipFile: Filesize would require ZIP64 extensions

======================================================================
ERROR: testExtractAll (test.test_zipfile.TestsWithSourceFile)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipfile.py", line 351, in tearDown
    os.remove(TESTFN2)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: '@test2'

======================================================================
ERROR: testIterlinesDeflated (test.test_zipfile.TestsWithSourceFile)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipfile.py", line 216, in testIterlinesDeflated
    self.zipIterlinesTest(f, zipfile.ZIP_DEFLATED)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipfile.py", line 172, in zipIterlinesTest
    self.makeTestArchive(f, compression)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipfile.py", line 37, in makeTestArchive
    zipfp.write(TESTFN, "another.name")
  File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 952, in write
    self._writecheck(zinfo)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 919, in _writecheck
    raise LargeZipFile("Filesize would require ZIP64 extensions")
zipfile.LargeZipFile: Filesize would require ZIP64 extensions

======================================================================
ERROR: testIterlinesDeflated (test.test_zipfile.TestsWithSourceFile)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipfile.py", line 351, in tearDown
    os.remove(TESTFN2)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: '@test2'

======================================================================
ERROR: testIterlinesStored (test.test_zipfile.TestsWithSourceFile)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipfile.py", line 191, in testIterlinesStored
    self.zipIterlinesTest(f, zipfile.ZIP_STORED)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipfile.py", line 172, in zipIterlinesTest
    self.makeTestArchive(f, compression)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipfile.py", line 37, in makeTestArchive
    zipfp.write(TESTFN, "another.name")
  File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 952, in write
    self._writecheck(zinfo)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 919, in _writecheck
    raise LargeZipFile("Filesize would require ZIP64 extensions")
zipfile.LargeZipFile: Filesize would require ZIP64 extensions

======================================================================
ERROR: testIterlinesStored (test.test_zipfile.TestsWithSourceFile)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipfile.py", line 351, in tearDown
    os.remove(TESTFN2)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: '@test2'

======================================================================
ERROR: testOpenDeflated (test.test_zipfile.TestsWithSourceFile)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipfile.py", line 200, in testOpenDeflated
    self.zipOpenTest(f, zipfile.ZIP_DEFLATED)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipfile.py", line 100, in zipOpenTest
    self.makeTestArchive(f, compression)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipfile.py", line 37, in makeTestArchive
    zipfp.write(TESTFN, "another.name")
  File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 952, in write
    self._writecheck(zinfo)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 919, in _writecheck
    raise LargeZipFile("Filesize would require ZIP64 extensions")
zipfile.LargeZipFile: Filesize would require ZIP64 extensions

======================================================================
ERROR: testOpenDeflated (test.test_zipfile.TestsWithSourceFile)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipfile.py", line 351, in tearDown
    os.remove(TESTFN2)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: '@test2'

======================================================================
ERROR: testOpenStored (test.test_zipfile.TestsWithSourceFile)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipfile.py", line 126, in testOpenStored
    self.zipOpenTest(f, zipfile.ZIP_STORED)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipfile.py", line 100, in zipOpenTest
    self.makeTestArchive(f, compression)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipfile.py", line 37, in makeTestArchive
    zipfp.write(TESTFN, "another.name")
  File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 952, in write
    self._writecheck(zinfo)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 919, in _writecheck
    raise LargeZipFile("Filesize would require ZIP64 extensions")
zipfile.LargeZipFile: Filesize would require ZIP64 extensions

======================================================================
ERROR: testOpenStored (test.test_zipfile.TestsWithSourceFile)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipfile.py", line 351, in tearDown
    os.remove(TESTFN2)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: '@test2'

======================================================================
ERROR: testRandomOpenDeflated (test.test_zipfile.TestsWithSourceFile)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipfile.py", line 204, in testRandomOpenDeflated
    self.zipRandomOpenTest(f, zipfile.ZIP_DEFLATED)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipfile.py", line 129, in zipRandomOpenTest
    self.makeTestArchive(f, compression)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipfile.py", line 37, in makeTestArchive
    zipfp.write(TESTFN, "another.name")
  File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 952, in write
    self._writecheck(zinfo)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 919, in _writecheck
    raise LargeZipFile("Filesize would require ZIP64 extensions")
zipfile.LargeZipFile: Filesize would require ZIP64 extensions

======================================================================
ERROR: testRandomOpenDeflated (test.test_zipfile.TestsWithSourceFile)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipfile.py", line 351, in tearDown
    os.remove(TESTFN2)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: '@test2'

======================================================================
ERROR: testRandomOpenStored (test.test_zipfile.TestsWithSourceFile)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipfile.py", line 146, in testRandomOpenStored
    self.zipRandomOpenTest(f, zipfile.ZIP_STORED)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipfile.py", line 129, in zipRandomOpenTest
    self.makeTestArchive(f, compression)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipfile.py", line 37, in makeTestArchive
    zipfp.write(TESTFN, "another.name")
  File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 952, in write
    self._writecheck(zinfo)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 919, in _writecheck
    raise LargeZipFile("Filesize would require ZIP64 extensions")
zipfile.LargeZipFile: Filesize would require ZIP64 extensions

======================================================================
ERROR: testRandomOpenStored (test.test_zipfile.TestsWithSourceFile)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipfile.py", line 351, in tearDown
    os.remove(TESTFN2)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: '@test2'

======================================================================
ERROR: testReadlineDeflated (test.test_zipfile.TestsWithSourceFile)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipfile.py", line 208, in testReadlineDeflated
    self.zipReadlineTest(f, zipfile.ZIP_DEFLATED)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipfile.py", line 149, in zipReadlineTest
    self.makeTestArchive(f, compression)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipfile.py", line 37, in makeTestArchive
    zipfp.write(TESTFN, "another.name")
  File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 952, in write
    self._writecheck(zinfo)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 919, in _writecheck
    raise LargeZipFile("Filesize would require ZIP64 extensions")
zipfile.LargeZipFile: Filesize would require ZIP64 extensions

======================================================================
ERROR: testReadlineDeflated (test.test_zipfile.TestsWithSourceFile)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipfile.py", line 351, in tearDown
    os.remove(TESTFN2)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: '@test2'

======================================================================
ERROR: testReadlineStored (test.test_zipfile.TestsWithSourceFile)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipfile.py", line 183, in testReadlineStored
    self.zipReadlineTest(f, zipfile.ZIP_STORED)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipfile.py", line 149, in zipReadlineTest
    self.makeTestArchive(f, compression)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipfile.py", line 37, in makeTestArchive
    zipfp.write(TESTFN, "another.name")
  File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 952, in write
    self._writecheck(zinfo)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 919, in _writecheck
    raise LargeZipFile("Filesize would require ZIP64 extensions")
zipfile.LargeZipFile: Filesize would require ZIP64 extensions

======================================================================
ERROR: testReadlineStored (test.test_zipfile.TestsWithSourceFile)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipfile.py", line 351, in tearDown
    os.remove(TESTFN2)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: '@test2'

======================================================================
ERROR: testReadlinesDeflated (test.test_zipfile.TestsWithSourceFile)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipfile.py", line 212, in testReadlinesDeflated
    self.zipReadlinesTest(f, zipfile.ZIP_DEFLATED)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipfile.py", line 161, in zipReadlinesTest
    self.makeTestArchive(f, compression)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipfile.py", line 37, in makeTestArchive
    zipfp.write(TESTFN, "another.name")
  File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 952, in write
    self._writecheck(zinfo)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 919, in _writecheck
    raise LargeZipFile("Filesize would require ZIP64 extensions")
zipfile.LargeZipFile: Filesize would require ZIP64 extensions

======================================================================
ERROR: testReadlinesDeflated (test.test_zipfile.TestsWithSourceFile)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipfile.py", line 351, in tearDown
    os.remove(TESTFN2)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: '@test2'

======================================================================
ERROR: testReadlinesStored (test.test_zipfile.TestsWithSourceFile)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipfile.py", line 187, in testReadlinesStored
    self.zipReadlinesTest(f, zipfile.ZIP_STORED)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipfile.py", line 161, in zipReadlinesTest
    self.makeTestArchive(f, compression)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipfile.py", line 37, in makeTestArchive
    zipfp.write(TESTFN, "another.name")
  File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 952, in write
    self._writecheck(zinfo)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 919, in _writecheck
    raise LargeZipFile("Filesize would require ZIP64 extensions")
zipfile.LargeZipFile: Filesize would require ZIP64 extensions

======================================================================
ERROR: testReadlinesStored (test.test_zipfile.TestsWithSourceFile)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipfile.py", line 351, in tearDown
    os.remove(TESTFN2)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: '@test2'

======================================================================
ERROR: testStored (test.test_zipfile.TestsWithSourceFile)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipfile.py", line 97, in testStored
    self.zipTest(f, zipfile.ZIP_STORED)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipfile.py", line 43, in zipTest
    self.makeTestArchive(f, compression)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipfile.py", line 37, in makeTestArchive
    zipfp.write(TESTFN, "another.name")
  File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 952, in write
    self._writecheck(zinfo)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 919, in _writecheck
    raise LargeZipFile("Filesize would require ZIP64 extensions")
zipfile.LargeZipFile: Filesize would require ZIP64 extensions

======================================================================
ERROR: testStored (test.test_zipfile.TestsWithSourceFile)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipfile.py", line 351, in tearDown
    os.remove(TESTFN2)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: '@test2'

======================================================================
ERROR: test_PerFileCompression (test.test_zipfile.TestsWithSourceFile)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipfile.py", line 279, in test_PerFileCompression
    zipfp.write(TESTFN, 'storeme', zipfile.ZIP_STORED)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 952, in write
    self._writecheck(zinfo)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 919, in _writecheck
    raise LargeZipFile("Filesize would require ZIP64 extensions")
zipfile.LargeZipFile: Filesize would require ZIP64 extensions

======================================================================
ERROR: test_PerFileCompression (test.test_zipfile.TestsWithSourceFile)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipfile.py", line 351, in tearDown
    os.remove(TESTFN2)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: '@test2'

======================================================================
ERROR: test_WriteDefaultName (test.test_zipfile.TestsWithSourceFile)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipfile.py", line 272, in test_WriteDefaultName
    zipfp.write(TESTFN)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 952, in write
    self._writecheck(zinfo)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 919, in _writecheck
    raise LargeZipFile("Filesize would require ZIP64 extensions")
zipfile.LargeZipFile: Filesize would require ZIP64 extensions

======================================================================
ERROR: test_WriteDefaultName (test.test_zipfile.TestsWithSourceFile)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipfile.py", line 351, in tearDown
    os.remove(TESTFN2)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: '@test2'

======================================================================
ERROR: testAbsoluteArcnames (test.test_zipfile.TestZip64InSmallFiles)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipfile.py", line 366, in setUp
    fp = open(TESTFN, "wb")
  File "C:\buildbot\work\3.0.heller-windows\build\lib\io.py", line 280, in __new__
    return open(*args, **kwargs)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\io.py", line 219, in open
    closefd)
IOError: [Errno 13] Permission denied: '@test'

======================================================================
ERROR: testDeflated (test.test_zipfile.TestZip64InSmallFiles)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipfile.py", line 366, in setUp
    fp = open(TESTFN, "wb")
  File "C:\buildbot\work\3.0.heller-windows\build\lib\io.py", line 280, in __new__
    return open(*args, **kwargs)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\io.py", line 219, in open
    closefd)
IOError: [Errno 13] Permission denied: '@test'

======================================================================
ERROR: testLargeFileException (test.test_zipfile.TestZip64InSmallFiles)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipfile.py", line 366, in setUp
    fp = open(TESTFN, "wb")
  File "C:\buildbot\work\3.0.heller-windows\build\lib\io.py", line 280, in __new__
    return open(*args, **kwargs)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\io.py", line 219, in open
    closefd)
IOError: [Errno 13] Permission denied: '@test'

======================================================================
ERROR: testStored (test.test_zipfile.TestZip64InSmallFiles)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipfile.py", line 366, in setUp
    fp = open(TESTFN, "wb")
  File "C:\buildbot\work\3.0.heller-windows\build\lib\io.py", line 280, in __new__
    return open(*args, **kwargs)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\io.py", line 219, in open
    closefd)
IOError: [Errno 13] Permission denied: '@test'

======================================================================
ERROR: testCloseErroneousFile (test.test_zipfile.OtherTests)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipfile.py", line 581, in testCloseErroneousFile
    fp = open(TESTFN, "w")
  File "C:\buildbot\work\3.0.heller-windows\build\lib\io.py", line 280, in __new__
    return open(*args, **kwargs)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\io.py", line 219, in open
    closefd)
IOError: [Errno 13] Permission denied: '@test'

======================================================================
ERROR: testClosedZipRaisesRuntimeError (test.test_zipfile.OtherTests)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipfile.py", line 625, in testClosedZipRaisesRuntimeError
    zipf.writestr("foo.txt", "O, for a Muse of Fire!")
  File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 1015, in writestr
    self._writecheck(zinfo)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 919, in _writecheck
    raise LargeZipFile("Filesize would require ZIP64 extensions")
zipfile.LargeZipFile: Filesize would require ZIP64 extensions

======================================================================
ERROR: testCreateNonExistentFileForAppend (test.test_zipfile.OtherTests)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipfile.py", line 563, in testCreateNonExistentFileForAppend
    zf.writestr(filename, content)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 1015, in writestr
    self._writecheck(zinfo)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 919, in _writecheck
    raise LargeZipFile("Filesize would require ZIP64 extensions")
zipfile.LargeZipFile: Filesize would require ZIP64 extensions

======================================================================
ERROR: testIsZipValidFile (test.test_zipfile.OtherTests)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipfile.py", line 602, in testIsZipValidFile
    zipf.writestr("foo.txt", b"O, for a Muse of Fire!")
  File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 1015, in writestr
    self._writecheck(zinfo)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 919, in _writecheck
    raise LargeZipFile("Filesize would require ZIP64 extensions")
zipfile.LargeZipFile: Filesize would require ZIP64 extensions

======================================================================
ERROR: testUnicodeFilenames (test.test_zipfile.OtherTests)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipfile.py", line 546, in testUnicodeFilenames
    zf.writestr("foo.txt", "Test for unicode filename")
  File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 1015, in writestr
    self._writecheck(zinfo)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 919, in _writecheck
    raise LargeZipFile("Filesize would require ZIP64 extensions")
zipfile.LargeZipFile: Filesize would require ZIP64 extensions

======================================================================
ERROR: test_BadOpenMode (test.test_zipfile.OtherTests)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipfile.py", line 646, in test_BadOpenMode
    zipf.writestr("foo.txt", "O, for a Muse of Fire!")
  File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 1015, in writestr
    self._writecheck(zinfo)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 919, in _writecheck
    raise LargeZipFile("Filesize would require ZIP64 extensions")
zipfile.LargeZipFile: Filesize would require ZIP64 extensions

======================================================================
ERROR: test_NullByteInFilename (test.test_zipfile.OtherTests)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipfile.py", line 680, in test_NullByteInFilename
    zipf.writestr("foo.txt\x00qqq", b"O, for a Muse of Fire!")
  File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 1015, in writestr
    self._writecheck(zinfo)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 919, in _writecheck
    raise LargeZipFile("Filesize would require ZIP64 extensions")
zipfile.LargeZipFile: Filesize would require ZIP64 extensions

======================================================================
ERROR: test_Read0 (test.test_zipfile.OtherTests)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipfile.py", line 658, in test_Read0
    zipf.writestr("foo.txt", "O, for a Muse of Fire!")
  File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 1015, in writestr
    self._writecheck(zinfo)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 919, in _writecheck
    raise LargeZipFile("Filesize would require ZIP64 extensions")
zipfile.LargeZipFile: Filesize would require ZIP64 extensions

======================================================================
ERROR: testWritePyfile (test.test_zipfile.PyZipFileTests)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipfile.py", line 478, in testWritePyfile
    zipfp.writepy(fn)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 1192, in writepy
    self.write(fname, arcname)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 952, in write
    self._writecheck(zinfo)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 919, in _writecheck
    raise LargeZipFile("Filesize would require ZIP64 extensions")
zipfile.LargeZipFile: Filesize would require ZIP64 extensions

======================================================================
ERROR: testWritePythonDirectory (test.test_zipfile.PyZipFileTests)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipfile.py", line 526, in testWritePythonDirectory
    zipfp.writepy(TESTFN2)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 1184, in writepy
    self.write(fname, arcname)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 952, in write
    self._writecheck(zinfo)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 919, in _writecheck
    raise LargeZipFile("Filesize would require ZIP64 extensions")
zipfile.LargeZipFile: Filesize would require ZIP64 extensions

======================================================================
ERROR: testWritePythonPackage (test.test_zipfile.PyZipFileTests)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipfile.py", line 503, in testWritePythonPackage
    zipfp.writepy(packagedir)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 1155, in writepy
    self.write(fname, arcname)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 952, in write
    self._writecheck(zinfo)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 919, in _writecheck
    raise LargeZipFile("Filesize would require ZIP64 extensions")
zipfile.LargeZipFile: Filesize would require ZIP64 extensions

======================================================================
ERROR: testBadPassword (test.test_zipfile.DecryptionTests)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipfile.py", line 717, in setUp
    self.zip = zipfile.ZipFile(TESTFN, "r")
  File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 629, in __init__
    self._GetContents()
  File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 649, in _GetContents
    self._RealGetContents()
  File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 686, in _RealGetContents
    raise BadZipfile("Bad magic number for central directory")
zipfile.BadZipfile: Bad magic number for central directory

======================================================================
ERROR: testGoodPassword (test.test_zipfile.DecryptionTests)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipfile.py", line 717, in setUp
    self.zip = zipfile.ZipFile(TESTFN, "r")
  File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 629, in __init__
    self._GetContents()
  File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 649, in _GetContents
    self._RealGetContents()
  File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 686, in _RealGetContents
    raise BadZipfile("Bad magic number for central directory")
zipfile.BadZipfile: Bad magic number for central directory

======================================================================
ERROR: testNoPassword (test.test_zipfile.DecryptionTests)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipfile.py", line 717, in setUp
    self.zip = zipfile.ZipFile(TESTFN, "r")
  File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 629, in __init__
    self._GetContents()
  File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 649, in _GetContents
    self._RealGetContents()
  File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 686, in _RealGetContents
    raise BadZipfile("Bad magic number for central directory")
zipfile.BadZipfile: Bad magic number for central directory

======================================================================
ERROR: testDifferentFile (test.test_zipfile.TestsWithMultipleOpens)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipfile.py", line 845, in setUp
    zipfp.writestr('ones', '1'*FIXEDTEST_SIZE)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 1015, in writestr
    self._writecheck(zinfo)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 919, in _writecheck
    raise LargeZipFile("Filesize would require ZIP64 extensions")
zipfile.LargeZipFile: Filesize would require ZIP64 extensions

======================================================================
ERROR: testInterleaved (test.test_zipfile.TestsWithMultipleOpens)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipfile.py", line 845, in setUp
    zipfp.writestr('ones', '1'*FIXEDTEST_SIZE)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 1015, in writestr
    self._writecheck(zinfo)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 919, in _writecheck
    raise LargeZipFile("Filesize would require ZIP64 extensions")
zipfile.LargeZipFile: Filesize would require ZIP64 extensions

======================================================================
ERROR: testSameFile (test.test_zipfile.TestsWithMultipleOpens)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipfile.py", line 845, in setUp
    zipfp.writestr('ones', '1'*FIXEDTEST_SIZE)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 1015, in writestr
    self._writecheck(zinfo)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 919, in _writecheck
    raise LargeZipFile("Filesize would require ZIP64 extensions")
zipfile.LargeZipFile: Filesize would require ZIP64 extensions

======================================================================
ERROR: testIterlinesDeflated (test.test_zipfile.UniversalNewlineTests)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipfile.py", line 995, in testIterlinesDeflated
    self.iterlinesTest(f, zipfile.ZIP_DEFLATED)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipfile.py", line 954, in iterlinesTest
    self.makeTestArchive(f, compression)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipfile.py", line 914, in makeTestArchive
    zipfp.write(fn, fn)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 952, in write
    self._writecheck(zinfo)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 919, in _writecheck
    raise LargeZipFile("Filesize would require ZIP64 extensions")
zipfile.LargeZipFile: Filesize would require ZIP64 extensions

======================================================================
ERROR: testIterlinesStored (test.test_zipfile.UniversalNewlineTests)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipfile.py", line 978, in testIterlinesStored
    self.iterlinesTest(f, zipfile.ZIP_STORED)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipfile.py", line 954, in iterlinesTest
    self.makeTestArchive(f, compression)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipfile.py", line 914, in makeTestArchive
    zipfp.write(fn, fn)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 952, in write
    self._writecheck(zinfo)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 919, in _writecheck
    raise LargeZipFile("Filesize would require ZIP64 extensions")
zipfile.LargeZipFile: Filesize would require ZIP64 extensions

======================================================================
ERROR: testReadDeflated (test.test_zipfile.UniversalNewlineTests)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipfile.py", line 983, in testReadDeflated
    self.readTest(f, zipfile.ZIP_DEFLATED)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipfile.py", line 918, in readTest
    self.makeTestArchive(f, compression)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipfile.py", line 914, in makeTestArchive
    zipfp.write(fn, fn)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 952, in write
    self._writecheck(zinfo)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 919, in _writecheck
    raise LargeZipFile("Filesize would require ZIP64 extensions")
zipfile.LargeZipFile: Filesize would require ZIP64 extensions

======================================================================
ERROR: testReadStored (test.test_zipfile.UniversalNewlineTests)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipfile.py", line 966, in testReadStored
    self.readTest(f, zipfile.ZIP_STORED)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipfile.py", line 918, in readTest
    self.makeTestArchive(f, compression)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipfile.py", line 914, in makeTestArchive
    zipfp.write(fn, fn)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 952, in write
    self._writecheck(zinfo)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 919, in _writecheck
    raise LargeZipFile("Filesize would require ZIP64 extensions")
zipfile.LargeZipFile: Filesize would require ZIP64 extensions

======================================================================
ERROR: testReadlineDeflated (test.test_zipfile.UniversalNewlineTests)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipfile.py", line 987, in testReadlineDeflated
    self.readlineTest(f, zipfile.ZIP_DEFLATED)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipfile.py", line 929, in readlineTest
    self.makeTestArchive(f, compression)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipfile.py", line 914, in makeTestArchive
    zipfp.write(fn, fn)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 952, in write
    self._writecheck(zinfo)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 919, in _writecheck
    raise LargeZipFile("Filesize would require ZIP64 extensions")
zipfile.LargeZipFile: Filesize would require ZIP64 extensions

======================================================================
ERROR: testReadlineStored (test.test_zipfile.UniversalNewlineTests)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipfile.py", line 970, in testReadlineStored
    self.readlineTest(f, zipfile.ZIP_STORED)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipfile.py", line 929, in readlineTest
    self.makeTestArchive(f, compression)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipfile.py", line 914, in makeTestArchive
    zipfp.write(fn, fn)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 952, in write
    self._writecheck(zinfo)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 919, in _writecheck
    raise LargeZipFile("Filesize would require ZIP64 extensions")
zipfile.LargeZipFile: Filesize would require ZIP64 extensions

======================================================================
ERROR: testReadlinesDeflated (test.test_zipfile.UniversalNewlineTests)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipfile.py", line 991, in testReadlinesDeflated
    self.readlinesTest(f, zipfile.ZIP_DEFLATED)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipfile.py", line 942, in readlinesTest
    self.makeTestArchive(f, compression)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipfile.py", line 914, in makeTestArchive
    zipfp.write(fn, fn)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 952, in write
    self._writecheck(zinfo)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 919, in _writecheck
    raise LargeZipFile("Filesize would require ZIP64 extensions")
zipfile.LargeZipFile: Filesize would require ZIP64 extensions

======================================================================
ERROR: testReadlinesStored (test.test_zipfile.UniversalNewlineTests)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipfile.py", line 974, in testReadlinesStored
    self.readlinesTest(f, zipfile.ZIP_STORED)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipfile.py", line 942, in readlinesTest
    self.makeTestArchive(f, compression)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipfile.py", line 914, in makeTestArchive
    zipfp.write(fn, fn)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 952, in write
    self._writecheck(zinfo)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 919, in _writecheck
    raise LargeZipFile("Filesize would require ZIP64 extensions")
zipfile.LargeZipFile: Filesize would require ZIP64 extensions

======================================================================
ERROR: testOpenStored (test.test_zipfile.TestsWithRandomBinaryFiles)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipfile.py", line 817, in testOpenStored
    self.zipOpenTest(f, zipfile.ZIP_STORED)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipfile.py", line 786, in zipOpenTest
    self.makeTestArchive(f, compression)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipfile.py", line 766, in makeTestArchive
    zipfp.write(TESTFN, "another.name")
  File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 952, in write
    self._writecheck(zinfo)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 919, in _writecheck
    raise LargeZipFile("Filesize would require ZIP64 extensions")
zipfile.LargeZipFile: Filesize would require ZIP64 extensions

======================================================================
ERROR: testRandomOpenStored (test.test_zipfile.TestsWithRandomBinaryFiles)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipfile.py", line 839, in testRandomOpenStored
    self.zipRandomOpenTest(f, zipfile.ZIP_STORED)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipfile.py", line 820, in zipRandomOpenTest
    self.makeTestArchive(f, compression)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipfile.py", line 766, in makeTestArchive
    zipfp.write(TESTFN, "another.name")
  File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 952, in write
    self._writecheck(zinfo)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 919, in _writecheck
    raise LargeZipFile("Filesize would require ZIP64 extensions")
zipfile.LargeZipFile: Filesize would require ZIP64 extensions

======================================================================
ERROR: testStored (test.test_zipfile.TestsWithRandomBinaryFiles)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipfile.py", line 783, in testStored
    self.zipTest(f, zipfile.ZIP_STORED)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipfile.py", line 771, in zipTest
    self.makeTestArchive(f, compression)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipfile.py", line 766, in makeTestArchive
    zipfp.write(TESTFN, "another.name")
  File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 952, in write
    self._writecheck(zinfo)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 919, in _writecheck
    raise LargeZipFile("Filesize would require ZIP64 extensions")
zipfile.LargeZipFile: Filesize would require ZIP64 extensions

======================================================================
ERROR: testBadMTime (test.test_zipimport.UncompressedZipImportTestCase)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipimport.py", line 180, in testBadMTime
    self.doTest(".py", files, TESTMOD)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipimport.py", line 73, in doTest
    z.writestr(zinfo, data)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 1015, in writestr
    self._writecheck(zinfo)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 919, in _writecheck
    raise LargeZipFile("Filesize would require ZIP64 extensions")
zipfile.LargeZipFile: Filesize would require ZIP64 extensions

======================================================================
ERROR: testBadMagic (test.test_zipimport.UncompressedZipImportTestCase)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipimport.py", line 160, in testBadMagic
    self.doTest(".py", files, TESTMOD)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipimport.py", line 73, in doTest
    z.writestr(zinfo, data)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 1015, in writestr
    self._writecheck(zinfo)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 919, in _writecheck
    raise LargeZipFile("Filesize would require ZIP64 extensions")
zipfile.LargeZipFile: Filesize would require ZIP64 extensions

======================================================================
ERROR: testBadMagic2 (test.test_zipimport.UncompressedZipImportTestCase)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipimport.py", line 168, in testBadMagic2
    self.doTest(".py", files, TESTMOD)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipimport.py", line 73, in doTest
    z.writestr(zinfo, data)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 1015, in writestr
    self._writecheck(zinfo)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 919, in _writecheck
    raise LargeZipFile("Filesize would require ZIP64 extensions")
zipfile.LargeZipFile: Filesize would require ZIP64 extensions

======================================================================
ERROR: testBoth (test.test_zipimport.UncompressedZipImportTestCase)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipimport.py", line 148, in testBoth
    self.doTest(pyc_ext, files, TESTMOD)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipimport.py", line 73, in doTest
    z.writestr(zinfo, data)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 1015, in writestr
    self._writecheck(zinfo)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 919, in _writecheck
    raise LargeZipFile("Filesize would require ZIP64 extensions")
zipfile.LargeZipFile: Filesize would require ZIP64 extensions

======================================================================
ERROR: testDeepPackage (test.test_zipimport.UncompressedZipImportTestCase)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipimport.py", line 194, in testDeepPackage
    self.doTest(pyc_ext, files, TESTPACK, TESTPACK2, TESTMOD)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipimport.py", line 73, in doTest
    z.writestr(zinfo, data)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 1015, in writestr
    self._writecheck(zinfo)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 919, in _writecheck
    raise LargeZipFile("Filesize would require ZIP64 extensions")
zipfile.LargeZipFile: Filesize would require ZIP64 extensions

======================================================================
ERROR: testDoctestFile (test.test_zipimport.UncompressedZipImportTestCase)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipimport.py", line 296, in testDoctestFile
    self.runDoctest(self.doDoctestFile)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipimport.py", line 281, in runDoctest
    self.doTest(".py", files, TESTMOD, call=callback)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipimport.py", line 73, in doTest
    z.writestr(zinfo, data)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 1015, in writestr
    self._writecheck(zinfo)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 919, in _writecheck
    raise LargeZipFile("Filesize would require ZIP64 extensions")
zipfile.LargeZipFile: Filesize would require ZIP64 extensions

======================================================================
ERROR: testDoctestSuite (test.test_zipimport.UncompressedZipImportTestCase)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipimport.py", line 307, in testDoctestSuite
    self.runDoctest(self.doDoctestSuite)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipimport.py", line 281, in runDoctest
    self.doTest(".py", files, TESTMOD, call=callback)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipimport.py", line 73, in doTest
    z.writestr(zinfo, data)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 1015, in writestr
    self._writecheck(zinfo)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 919, in _writecheck
    raise LargeZipFile("Filesize would require ZIP64 extensions")
zipfile.LargeZipFile: Filesize would require ZIP64 extensions

======================================================================
ERROR: testEmptyPy (test.test_zipimport.UncompressedZipImportTestCase)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipimport.py", line 152, in testEmptyPy
    self.doTest(None, files, TESTMOD)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipimport.py", line 91, in doTest
    ["__dummy__"])
ImportError: No module named ziptestmodule

======================================================================
ERROR: testGetCompiledSource (test.test_zipimport.UncompressedZipImportTestCase)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipimport.py", line 276, in testGetCompiledSource
    self.doTest(pyc_ext, files, TESTMOD, call=self.assertModuleSource)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipimport.py", line 68, in doTest
    z = ZipFile(TEMP_ZIP, "w")
  File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 616, in __init__
    self.fp = io.open(file, modeDict[mode])
  File "C:\buildbot\work\3.0.heller-windows\build\lib\io.py", line 219, in open
    closefd)
IOError: [Errno 13] Permission denied: 'C:\\buildbot\\work\\3.0.heller-windows\\build\\PCbuild\\junk95142.zip'

======================================================================
ERROR: testGetData (test.test_zipimport.UncompressedZipImportTestCase)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipimport.py", line 238, in testGetData
    z.writestr(name, data)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 1015, in writestr
    self._writecheck(zinfo)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 919, in _writecheck
    raise LargeZipFile("Filesize would require ZIP64 extensions")
zipfile.LargeZipFile: Filesize would require ZIP64 extensions

======================================================================
ERROR: testGetSource (test.test_zipimport.UncompressedZipImportTestCase)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipimport.py", line 270, in testGetSource
    self.doTest(".py", files, TESTMOD, call=self.assertModuleSource)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipimport.py", line 73, in doTest
    z.writestr(zinfo, data)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 1015, in writestr
    self._writecheck(zinfo)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 919, in _writecheck
    raise LargeZipFile("Filesize would require ZIP64 extensions")
zipfile.LargeZipFile: Filesize would require ZIP64 extensions

======================================================================
ERROR: testImport_WithStuff (test.test_zipimport.UncompressedZipImportTestCase)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipimport.py", line 263, in testImport_WithStuff
    stuff=b"Some Stuff"*31)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipimport.py", line 73, in doTest
    z.writestr(zinfo, data)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 1015, in writestr
    self._writecheck(zinfo)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 919, in _writecheck
    raise LargeZipFile("Filesize would require ZIP64 extensions")
zipfile.LargeZipFile: Filesize would require ZIP64 extensions

======================================================================
ERROR: testImporterAttr (test.test_zipimport.UncompressedZipImportTestCase)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipimport.py", line 256, in testImporterAttr
    self.doTest(pyc_ext, files, TESTMOD)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipimport.py", line 73, in doTest
    z.writestr(zinfo, data)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 1015, in writestr
    self._writecheck(zinfo)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 919, in _writecheck
    raise LargeZipFile("Filesize would require ZIP64 extensions")
zipfile.LargeZipFile: Filesize would require ZIP64 extensions

======================================================================
ERROR: testPackage (test.test_zipimport.UncompressedZipImportTestCase)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipimport.py", line 186, in testPackage
    self.doTest(pyc_ext, files, TESTPACK, TESTMOD)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipimport.py", line 73, in doTest
    z.writestr(zinfo, data)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 1015, in writestr
    self._writecheck(zinfo)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 919, in _writecheck
    raise LargeZipFile("Filesize would require ZIP64 extensions")
zipfile.LargeZipFile: Filesize would require ZIP64 extensions

======================================================================
ERROR: testPy (test.test_zipimport.UncompressedZipImportTestCase)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipimport.py", line 139, in testPy
    self.doTest(".py", files, TESTMOD)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipimport.py", line 73, in doTest
    z.writestr(zinfo, data)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 1015, in writestr
    self._writecheck(zinfo)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 919, in _writecheck
    raise LargeZipFile("Filesize would require ZIP64 extensions")
zipfile.LargeZipFile: Filesize would require ZIP64 extensions

======================================================================
ERROR: testPyc (test.test_zipimport.UncompressedZipImportTestCase)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipimport.py", line 143, in testPyc
    self.doTest(pyc_ext, files, TESTMOD)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipimport.py", line 73, in doTest
    z.writestr(zinfo, data)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 1015, in writestr
    self._writecheck(zinfo)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 919, in _writecheck
    raise LargeZipFile("Filesize would require ZIP64 extensions")
zipfile.LargeZipFile: Filesize would require ZIP64 extensions

======================================================================
ERROR: testTraceback (test.test_zipimport.UncompressedZipImportTestCase)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipimport.py", line 330, in testTraceback
    self.doTest(None, files, TESTMOD, call=self.doTraceback)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipimport.py", line 73, in doTest
    z.writestr(zinfo, data)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 1015, in writestr
    self._writecheck(zinfo)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 919, in _writecheck
    raise LargeZipFile("Filesize would require ZIP64 extensions")
zipfile.LargeZipFile: Filesize would require ZIP64 extensions

======================================================================
ERROR: testZipImporterMethods (test.test_zipimport.UncompressedZipImportTestCase)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipimport.py", line 208, in testZipImporterMethods
    z.writestr(zinfo, data)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 1015, in writestr
    self._writecheck(zinfo)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 919, in _writecheck
    raise LargeZipFile("Filesize would require ZIP64 extensions")
zipfile.LargeZipFile: Filesize would require ZIP64 extensions

======================================================================
ERROR: testBadMTime (test.test_zipimport.CompressedZipImportTestCase)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipimport.py", line 180, in testBadMTime
    self.doTest(".py", files, TESTMOD)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipimport.py", line 73, in doTest
    z.writestr(zinfo, data)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 1015, in writestr
    self._writecheck(zinfo)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 919, in _writecheck
    raise LargeZipFile("Filesize would require ZIP64 extensions")
zipfile.LargeZipFile: Filesize would require ZIP64 extensions

======================================================================
ERROR: testBadMagic (test.test_zipimport.CompressedZipImportTestCase)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipimport.py", line 160, in testBadMagic
    self.doTest(".py", files, TESTMOD)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipimport.py", line 73, in doTest
    z.writestr(zinfo, data)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 1015, in writestr
    self._writecheck(zinfo)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 919, in _writecheck
    raise LargeZipFile("Filesize would require ZIP64 extensions")
zipfile.LargeZipFile: Filesize would require ZIP64 extensions

======================================================================
ERROR: testBadMagic2 (test.test_zipimport.CompressedZipImportTestCase)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipimport.py", line 168, in testBadMagic2
    self.doTest(".py", files, TESTMOD)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipimport.py", line 73, in doTest
    z.writestr(zinfo, data)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 1015, in writestr
    self._writecheck(zinfo)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 919, in _writecheck
    raise LargeZipFile("Filesize would require ZIP64 extensions")
zipfile.LargeZipFile: Filesize would require ZIP64 extensions

======================================================================
ERROR: testBoth (test.test_zipimport.CompressedZipImportTestCase)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipimport.py", line 148, in testBoth
    self.doTest(pyc_ext, files, TESTMOD)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipimport.py", line 73, in doTest
    z.writestr(zinfo, data)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 1015, in writestr
    self._writecheck(zinfo)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 919, in _writecheck
    raise LargeZipFile("Filesize would require ZIP64 extensions")
zipfile.LargeZipFile: Filesize would require ZIP64 extensions

======================================================================
ERROR: testDeepPackage (test.test_zipimport.CompressedZipImportTestCase)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipimport.py", line 194, in testDeepPackage
    self.doTest(pyc_ext, files, TESTPACK, TESTPACK2, TESTMOD)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipimport.py", line 73, in doTest
    z.writestr(zinfo, data)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 1015, in writestr
    self._writecheck(zinfo)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 919, in _writecheck
    raise LargeZipFile("Filesize would require ZIP64 extensions")
zipfile.LargeZipFile: Filesize would require ZIP64 extensions

======================================================================
ERROR: testDoctestFile (test.test_zipimport.CompressedZipImportTestCase)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipimport.py", line 296, in testDoctestFile
    self.runDoctest(self.doDoctestFile)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipimport.py", line 281, in runDoctest
    self.doTest(".py", files, TESTMOD, call=callback)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipimport.py", line 73, in doTest
    z.writestr(zinfo, data)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 1015, in writestr
    self._writecheck(zinfo)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 919, in _writecheck
    raise LargeZipFile("Filesize would require ZIP64 extensions")
zipfile.LargeZipFile: Filesize would require ZIP64 extensions

======================================================================
ERROR: testDoctestSuite (test.test_zipimport.CompressedZipImportTestCase)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipimport.py", line 307, in testDoctestSuite
    self.runDoctest(self.doDoctestSuite)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipimport.py", line 281, in runDoctest
    self.doTest(".py", files, TESTMOD, call=callback)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipimport.py", line 73, in doTest
    z.writestr(zinfo, data)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 1015, in writestr
    self._writecheck(zinfo)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 919, in _writecheck
    raise LargeZipFile("Filesize would require ZIP64 extensions")
zipfile.LargeZipFile: Filesize would require ZIP64 extensions

======================================================================
ERROR: testEmptyPy (test.test_zipimport.CompressedZipImportTestCase)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipimport.py", line 152, in testEmptyPy
    self.doTest(None, files, TESTMOD)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipimport.py", line 91, in doTest
    ["__dummy__"])
ImportError: No module named ziptestmodule

======================================================================
ERROR: testGetCompiledSource (test.test_zipimport.CompressedZipImportTestCase)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipimport.py", line 276, in testGetCompiledSource
    self.doTest(pyc_ext, files, TESTMOD, call=self.assertModuleSource)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipimport.py", line 68, in doTest
    z = ZipFile(TEMP_ZIP, "w")
  File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 616, in __init__
    self.fp = io.open(file, modeDict[mode])
  File "C:\buildbot\work\3.0.heller-windows\build\lib\io.py", line 219, in open
    closefd)
IOError: [Errno 13] Permission denied: 'C:\\buildbot\\work\\3.0.heller-windows\\build\\PCbuild\\junk95142.zip'

======================================================================
ERROR: testGetData (test.test_zipimport.CompressedZipImportTestCase)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipimport.py", line 238, in testGetData
    z.writestr(name, data)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 1015, in writestr
    self._writecheck(zinfo)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 919, in _writecheck
    raise LargeZipFile("Filesize would require ZIP64 extensions")
zipfile.LargeZipFile: Filesize would require ZIP64 extensions

======================================================================
ERROR: testGetSource (test.test_zipimport.CompressedZipImportTestCase)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipimport.py", line 270, in testGetSource
    self.doTest(".py", files, TESTMOD, call=self.assertModuleSource)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipimport.py", line 73, in doTest
    z.writestr(zinfo, data)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 1015, in writestr
    self._writecheck(zinfo)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 919, in _writecheck
    raise LargeZipFile("Filesize would require ZIP64 extensions")
zipfile.LargeZipFile: Filesize would require ZIP64 extensions

======================================================================
ERROR: testImport_WithStuff (test.test_zipimport.CompressedZipImportTestCase)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipimport.py", line 263, in testImport_WithStuff
    stuff=b"Some Stuff"*31)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipimport.py", line 73, in doTest
    z.writestr(zinfo, data)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 1015, in writestr
    self._writecheck(zinfo)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 919, in _writecheck
    raise LargeZipFile("Filesize would require ZIP64 extensions")
zipfile.LargeZipFile: Filesize would require ZIP64 extensions

======================================================================
ERROR: testImporterAttr (test.test_zipimport.CompressedZipImportTestCase)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipimport.py", line 256, in testImporterAttr
    self.doTest(pyc_ext, files, TESTMOD)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipimport.py", line 73, in doTest
    z.writestr(zinfo, data)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 1015, in writestr
    self._writecheck(zinfo)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 919, in _writecheck
    raise LargeZipFile("Filesize would require ZIP64 extensions")
zipfile.LargeZipFile: Filesize would require ZIP64 extensions

======================================================================
ERROR: testPackage (test.test_zipimport.CompressedZipImportTestCase)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipimport.py", line 186, in testPackage
    self.doTest(pyc_ext, files, TESTPACK, TESTMOD)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipimport.py", line 73, in doTest
    z.writestr(zinfo, data)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 1015, in writestr
    self._writecheck(zinfo)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 919, in _writecheck
    raise LargeZipFile("Filesize would require ZIP64 extensions")
zipfile.LargeZipFile: Filesize would require ZIP64 extensions

======================================================================
ERROR: testPy (test.test_zipimport.CompressedZipImportTestCase)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipimport.py", line 139, in testPy
    self.doTest(".py", files, TESTMOD)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipimport.py", line 73, in doTest
    z.writestr(zinfo, data)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 1015, in writestr
    self._writecheck(zinfo)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 919, in _writecheck
    raise LargeZipFile("Filesize would require ZIP64 extensions")
zipfile.LargeZipFile: Filesize would require ZIP64 extensions

======================================================================
ERROR: testPyc (test.test_zipimport.CompressedZipImportTestCase)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipimport.py", line 143, in testPyc
    self.doTest(pyc_ext, files, TESTMOD)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipimport.py", line 73, in doTest
    z.writestr(zinfo, data)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 1015, in writestr
    self._writecheck(zinfo)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 919, in _writecheck
    raise LargeZipFile("Filesize would require ZIP64 extensions")
zipfile.LargeZipFile: Filesize would require ZIP64 extensions

======================================================================
ERROR: testTraceback (test.test_zipimport.CompressedZipImportTestCase)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipimport.py", line 330, in testTraceback
    self.doTest(None, files, TESTMOD, call=self.doTraceback)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipimport.py", line 73, in doTest
    z.writestr(zinfo, data)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 1015, in writestr
    self._writecheck(zinfo)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 919, in _writecheck
    raise LargeZipFile("Filesize would require ZIP64 extensions")
zipfile.LargeZipFile: Filesize would require ZIP64 extensions

======================================================================
ERROR: testZipImporterMethods (test.test_zipimport.CompressedZipImportTestCase)
----------------------------------------------------------------------

Traceback (most recent call last):
  File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipimport.py", line 208, in testZipImporterMethods
    z.writestr(zinfo, data)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 1015, in writestr
    self._writecheck(zinfo)
  File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 919, in _writecheck
    raise LargeZipFile("Filesize would require ZIP64 extensions")
zipfile.LargeZipFile: Filesize would require ZIP64 extensions

sincerely,
 -The Buildbot



More information about the Python-checkins mailing list