Python-checkins
Threads by month
- ----- 2026 -----
- March
- February
- January
- ----- 2025 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2024 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2023 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2022 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2021 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2020 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2019 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2018 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2017 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2016 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2015 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2014 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2013 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2012 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2011 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2010 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2009 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2008 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2007 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2006 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2005 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2004 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2003 -----
- December
- November
- October
- September
- August
May 2008
- 33 participants
- 1478 discussions
r62613 - in sandbox/trunk/ttk-gsoc: Doc/library/ttk.rst Lib/lib-tk/Ttk.py
by guilherme.polo May 1, 2008
by guilherme.polo May 1, 2008
May 1, 2008
Author: guilherme.polo
Date: Thu May 1 15:54:35 2008
New Revision: 62613
Log:
Documented Style configure and lookup.
Improved Style's lookup method a bit, it works like as expected now,
state is a sequence of one or more states and default is returned
correctly if option is not present in style.
Typo corrections.
Modified:
sandbox/trunk/ttk-gsoc/Doc/library/ttk.rst
sandbox/trunk/ttk-gsoc/Lib/lib-tk/Ttk.py
Modified: sandbox/trunk/ttk-gsoc/Doc/library/ttk.rst
==============================================================================
--- sandbox/trunk/ttk-gsoc/Doc/library/ttk.rst (original)
+++ sandbox/trunk/ttk-gsoc/Doc/library/ttk.rst Thu May 1 15:54:35 2008
@@ -58,8 +58,8 @@
-----------
Ttk comes with 16 widgets, where 10 of these already existed in Tkinter:
-:class:`Button`, :class:`Checkbutton`, :class:`Entry`, :class:`Frame`, :
-class:`Label`, :class:`LabelFrame`, :class:`Menubutton`, :class:`PanedWindow`,
+:class:`Button`, :class:`Checkbutton`, :class:`Entry`, :class:`Frame`,
+:class:`Label`, :class:`LabelFrame`, :class:`Menubutton`, :class:`PanedWindow`,
:class:`Radiobutton` and :class:`Scrollbar`. The others 6 are new:
:class:`Combobox`, :class:`Notebook`, :class:`Progressbar`, :class:`Separator`,
:class:`Sizegrip` and :class:`Treeview`. And all them are subclasses of
@@ -73,6 +73,7 @@
l1 = Tkinter.Label(text="Test", fg="black", bg="white")
l2 = Tkinter.Label(text="Test", fg="black", bg="white")
+
Ttk code::
style = Ttk.Style()
@@ -82,6 +83,10 @@
l2 = Ttk.Label(text="Test", style="BW.TLabel")
+Read the :class:`Style` class documentation for more information about
+TtkStyling_.
+
+
.. class:: Widget
Accepts the following options:
@@ -112,7 +117,7 @@
And the new methods:
- .. method:: instate(statespec[, callback=None], *args]])
+ .. method:: instate(statespec[, callback=None[, *args]])
Test the widget's state. If a callback is not specified, returns 1
if the widget state matches *statespec* and 0 otherwise. If callback
@@ -124,7 +129,7 @@
Modify or inquire widget state. If *statespec* is specified, sets the
widget state according to it and return a new *statespec* indicating
- which flags were changed. If *statespec* is not especified, returns
+ which flags were changed. If *statespec* is not specified, returns
the currently-enabled state flags.
Note that *statespec* is always expected to be a sequence.
@@ -178,12 +183,52 @@
.. class:: Treeview
+.. _TtkStyling:
+
Ttk Styling
-----------
+Each widget is assigned a style, which especifies the set of elements making
+up the widget and how they are arranged, along with dynamic and default
+settings for element options. By default, the style name is the same as
+the widget's class prefixed by a "T", which may be overriden by the widget's
+style option.
+
+.. seealso::
+
+ `Tcl'2004 conference presentation <http://tktable.sourceforge.net/tile/tile-tcl2004.pdf>`_
+ This document explains how the theme engine works
+
.. class:: Style
+ This class is used to manipulate the style database.
+
+
+ .. method:: configure(style, **kw)
+
+ Sets the default value of the specified option(s) in *style*.
+
+ Each key in *kw* is an option and each value is a string identifying
+ the value for that option.
+
+ For example, to change every default button to be a flat button with
+ some padding and a different background color you could do::
+
+ import Ttk
+ import Tkinter
+
+ root = Tkinter.Tk()
+
+ Ttk.Style().configure("TButton", padding=6, relief="flat",
+ background="#ccc")
+
+ btn = Ttk.Button(text="Sample")
+ btn.pack()
+
+ root.mainloop()
+
+
.. method:: map(style, **kw)
Sets dynamic values of the specified option(s) in *style*.
@@ -221,11 +266,58 @@
for the foreground, for example, you would get a blue foreground when
the widget were in active or pressed states.
* In the background option, (('pressed', '!disabled'), 'black') was
- especified for grouping the states 'pressed' and '!disabled', but it
+ specified for grouping the states 'pressed' and '!disabled', but it
has no different effect than using just 'pressed' for this example,
this was done just to explain the documentation.
+ .. method:: lookup(style, option[, state=None[, default=None]])
+
+ Returns the value specified for *option* in *style*.
+
+ If *state* is specified, it is expected to be a sequence of one or more
+ states. If the *default* argument is set, it is used as a fallback value
+ in case no specification for option is found.
+
+ To check what font a Button uses by default, you would do::
+
+ import Ttk
+
+ print Ttk.Style().lookup("TButton", "font")
+
+
+ .. method:: layout TBD
+
+
+ .. method:: element_create TBD
+
+
+ .. method:: element_names()
+
+ Returns the list of elements defined in the current theme
+
+
+ .. method:: element_options(element)
+
+ Returns the list of element's options
+
+
+ .. method:: theme_create TBD
+
+
+ .. method:: theme_settings TBD
+
+
+ .. method:: theme_names()
+
+ Returns a list of all known themes
+
+
+ .. method:: theme_use(themename)
+
+ Sets the current theme to themename and refreshes all wigets
+
+
Others new features
-------------------
Modified: sandbox/trunk/ttk-gsoc/Lib/lib-tk/Ttk.py
==============================================================================
--- sandbox/trunk/ttk-gsoc/Lib/lib-tk/Ttk.py (original)
+++ sandbox/trunk/ttk-gsoc/Lib/lib-tk/Ttk.py Thu May 1 15:54:35 2008
@@ -56,7 +56,7 @@
self.tk = master.tk
def configure(self, style, **kw):
- """Sets the default value of the especified option(s) in style."""
+ """Sets the default value of the specified option(s) in style."""
opts = [("-%s" % opt, value) for opt, value in kw.iteritems()]
opts = Tkinter._flatten(opts)
@@ -89,15 +89,17 @@
def lookup(self, style, option, state=None, default=None):
- """Returns the value specified for option for given style in
- state, using the standard lookup rules for element options.
- state is a list of state names; if omitted, it defaults to
- "normal". If the default argument is present, it is used as a
- fallback value in case no specification for option is
- found."""
- # XXX Re-write this docstring
- return self.tk.call(self._name, "lookup", style, option, state,
- default)
+ """Returns the value specified for option in style.
+
+ If state is specified it is expected to be a sequence of one
+ or more states. If the default argument is set, it is used as
+ a fallback value in case no specification for option is found."""
+ state = ' '.join(state) if state else ''
+
+ if not option.startswith('-'):
+ option = '-' + option
+
+ return self.tk.call(self._name, "lookup", style, option, state, default)
def layout(self, style, layoutspec=None):
@@ -167,7 +169,7 @@
def theme_use(self, themename):
- """Sets the current theme to themename, and refreshes all widgets."""
+ """Sets the current theme to themename and refreshes all widgets."""
self.tk.call(self._name, "theme", "use", themename)
@@ -200,7 +202,7 @@
def instate(self, statespec, callback=None, *args):
"""Test the widget's state.
- If callback is not especified, returns 1 if the widget state
+ If callback is not specified, returns 1 if the widget state
matches statespec and 0 otherwise. If callback is specified,
then it will be invoked with *args if the widget state matches
statespec. statespec is expected to be a sequence."""
1
0
326 tests OK.
1 test failed:
test_subprocess
24 tests skipped:
test_aepack test_al test_applesingle test_bsddb185 test_cd test_cl
test_epoll test_gl test_imageop test_imgfile test_ioctl
test_kqueue test_lib2to3 test_macostools test_pep277 test_py3kwarn
test_scriptpackages test_startfile test_sunaudiodev test_tcl
test_unicode_file test_winreg test_winsound test_zipfile64
3 skips unexpected on linux2:
test_epoll test_lib2to3 test_ioctl
test_grammar
test_opcodes
test_dict
test_builtin
test_exceptions
test_types
test_unittest
test_doctest
test_doctest2
test_MimeWriter
test_SimpleHTTPServer
test_StringIO
test___all__
test___future__
test__locale
test_abc
test_abstract_numbers
test_aepack
test_aepack skipped -- No module named aepack
test_al
test_al skipped -- No module named al
test_anydbm
test_applesingle
test_applesingle skipped -- No module named macostools
test_array
test_ast
test_asynchat
test_asyncore
test_atexit
test_audioop
test_augassign
test_base64
test_bastion
test_bigaddrspace
test_bigmem
test_binascii
test_binhex
test_binop
test_bisect
test_bool
test_bsddb
test_bsddb185
test_bsddb185 skipped -- No module named bsddb185
test_bsddb3
test_buffer
test_bufio
test_bytes
test_bz2
test_calendar
test_call
test_capi
test_cd
test_cd skipped -- No module named cd
test_cfgparser
test_cgi
test_charmapcodec
test_cl
test_cl skipped -- No module named cl
test_class
test_cmath
test_cmd
test_cmd_line
test_cmd_line_script
test_code
test_codeccallbacks
test_codecencodings_cn
test_codecencodings_hk
test_codecencodings_jp
test_codecencodings_kr
test_codecencodings_tw
test_codecmaps_cn
test_codecmaps_hk
test_codecmaps_jp
test_codecmaps_kr
test_codecmaps_tw
test_codecs
test_codeop
test_coding
test_coercion
test_collections
test_colorsys
test_commands
test_compare
test_compile
test_compiler
testCompileLibrary still working, be patient...
test_complex
test_complex_args
test_contains
test_contextlib
test_cookie
test_cookielib
test_copy
test_copy_reg
test_cpickle
test_cprofile
test_crypt
test_csv
test_ctypes
test_datetime
test_dbm
test_decimal
test_decorators
test_defaultdict
test_deque
test_descr
test_descrtut
test_difflib
test_dircache
test_dis
test_distutils
test_dl
test_docxmlrpc
test_dumbdbm
test_dummy_thread
test_dummy_threading
test_email
test_email_codecs
test_email_renamed
test_enumerate
test_eof
test_epoll
test_epoll skipped -- kernel doesn't support epoll()
test_errno
test_exception_variations
test_extcall
test_fcntl
test_file
test_filecmp
test_fileinput
test_float
test_fnmatch
test_fork1
test_format
test_fpformat
test_fractions
test_frozen
test_ftplib
test_funcattrs
test_functools
test_future
test_future3
test_future4
test_future_builtins
test_gc
test_gdbm
test_generators
test_genericpath
test_genexps
test_getargs
test_getargs2
test_getopt
test_gettext
test_gl
test_gl skipped -- No module named gl
test_glob
test_global
test_grp
test_gzip
test_hash
test_hashlib
test_heapq
test_hmac
test_hotshot
test_htmllib
test_htmlparser
test_httplib
test_imageop
test_imageop skipped -- No module named imgfile
test_imaplib
test_imgfile
test_imgfile skipped -- No module named imgfile
test_imp
test_import
test_importhooks
test_index
test_inspect
test_int_literal
test_io
test_ioctl
test_ioctl skipped -- Unable to open /dev/tty
test_isinstance
test_iter
test_iterlen
test_itertools
test_kqueue
test_kqueue skipped -- test works only on BSD
test_largefile
test_lib2to3
test_lib2to3 skipped -- No module named tests
test_list
test_locale
test_logging
test_long
test_long_future
test_longexp
test_macostools
test_macostools skipped -- No module named macostools
test_macpath
test_mailbox
test_marshal
test_math
test_md5
test_mhlib
test_mimetools
test_mimetypes
test_minidom
test_mmap
test_module
test_modulefinder
test_multibytecodec
test_multibytecodec_support
test_multifile
test_mutants
test_mutex
test_netrc
test_new
test_nis
test_normalization
test_ntpath
test_old_mailbox
test_openpty
test_operator
test_optparse
test_os
test_parser
Expecting 's_push: parser stack overflow' in next line
s_push: parser stack overflow
test_peepholer
test_pep247
test_pep263
test_pep277
test_pep277 skipped -- test works only on NT+
test_pep292
test_pep352
test_pickle
test_pickletools
test_pipes
test_pkg
test_pkgimport
test_pkgutil
test_platform
test_plistlib
test_poll
test_popen
[8537 refs]
[8537 refs]
[8537 refs]
test_popen2
test_poplib
test_posix
test_posixpath
test_pow
test_pprint
test_print
test_profile
test_profilehooks
test_property
test_pstats
test_pty
test_pwd
test_py3kwarn
test_py3kwarn skipped -- test.test_py3kwarn must be run with the -3 flag
test_pyclbr
test_pydoc
test_pyexpat
test_queue
test_quopri
[11051 refs]
[11051 refs]
test_random
test_re
test_repr
test_resource
test_rfc822
test_richcmp
test_robotparser
test_runpy
test_sax
test_scope
test_scriptpackages
test_scriptpackages skipped -- No module named aetools
test_select
test_set
test_sets
test_sgmllib
test_sha
test_shelve
test_shlex
test_shutil
test_signal
test_site
test_slice
test_smtplib
test_socket
test_socket_ssl
test_socketserver
test_softspace
test_sort
test_sqlite
test_ssl
test_startfile
test_startfile skipped -- cannot import name startfile
test_str
test_strftime
test_string
test_stringprep
test_strop
test_strptime
test_struct
test_structmembers
test_structseq
test_subprocess
[8532 refs]
[8534 refs]
[8532 refs]
[8532 refs]
[8532 refs]
[8532 refs]
[8532 refs]
[8532 refs]
[8532 refs]
[8532 refs]
[8534 refs]
[10457 refs]
Traceback (most recent call last):
File "<string>", line 1, in <module>
EOFError: EOF when reading a line
[8532 refs]
[8750 refs]
[8534 refs]
[8532 refs]
[8532 refs]
[8532 refs]
[8532 refs]
[8532 refs]
.
[8532 refs]
[8532 refs]
this bit of output is from a test of stdout in a different process ...
[8532 refs]
[8532 refs]
[8750 refs]
test test_subprocess failed -- Traceback (most recent call last):
File "/tmp/python-test/local/lib/python2.6/test/test_subprocess.py", line 599, in test_kill
self.assert_(p.poll() is None, p.poll())
AssertionError: 1
test_sunaudiodev
test_sunaudiodev skipped -- No module named sunaudiodev
test_sundry
test_symtable
test_syntax
test_sys
[8532 refs]
[8532 refs]
test_tarfile
test_tcl
test_tcl skipped -- No module named _tkinter
test_telnetlib
test_tempfile
[8537 refs]
test_textwrap
test_thread
test_threaded_import
test_threadedtempfile
test_threading
[11736 refs]
[14672 refs]
test_threading_local
test_threadsignals
test_time
test_timeout
test_tokenize
test_trace
test_traceback
test_transformer
test_tuple
test_typechecks
test_ucn
test_unary
test_undocumented_details
test_unicode
test_unicode_file
test_unicode_file skipped -- No Unicode filesystem semantics on this platform.
test_unicodedata
test_univnewlines
test_unpack
test_urllib
test_urllib2
test_urllib2_localnet
test_urllib2net
test_urllibnet
test_urlparse
test_userdict
test_userlist
test_userstring
test_uu
test_uuid
WARNING: uuid.getnode is unreliable on many platforms.
It is disabled until the code and/or test can be fixed properly.
WARNING: uuid._ifconfig_getnode is unreliable on many platforms.
It is disabled until the code and/or test can be fixed properly.
WARNING: uuid._unixdll_getnode is unreliable on many platforms.
It is disabled until the code and/or test can be fixed properly.
test_wait3
test_wait4
test_warnings
test_wave
test_weakref
test_whichdb
test_winreg
test_winreg skipped -- No module named _winreg
test_winsound
test_winsound skipped -- No module named winsound
test_with
test_wsgiref
test_xdrlib
test_xml_etree
test_xml_etree_c
test_xmllib
test_xmlrpc
test_xpickle
test_xrange
test_zipfile
test_zipfile64
test_zipfile64 skipped -- test requires loads of disk-space bytes and a long time to run
test_zipimport
test_zlib
326 tests OK.
1 test failed:
test_subprocess
24 tests skipped:
test_aepack test_al test_applesingle test_bsddb185 test_cd test_cl
test_epoll test_gl test_imageop test_imgfile test_ioctl
test_kqueue test_lib2to3 test_macostools test_pep277 test_py3kwarn
test_scriptpackages test_startfile test_sunaudiodev test_tcl
test_unicode_file test_winreg test_winsound test_zipfile64
3 skips unexpected on linux2:
test_epoll test_lib2to3 test_ioctl
[604356 refs]
1
0
321 tests OK.
1 test failed:
test_subprocess
32 tests skipped:
test_aepack test_al test_applesingle test_bsddb185 test_bsddb3
test_cd test_cl test_curses test_epoll test_gl test_imageop
test_imgfile test_ioctl test_kqueue test_lib2to3
test_linuxaudiodev test_macostools test_ossaudiodev test_pep277
test_py3kwarn test_scriptpackages test_socketserver test_startfile
test_sunaudiodev test_tcl test_timeout test_unicode_file
test_urllib2net test_urllibnet test_winreg test_winsound
test_zipfile64
3 skips unexpected on linux2:
test_epoll test_lib2to3 test_ioctl
test_grammar
test_opcodes
test_dict
test_builtin
test_exceptions
test_types
test_unittest
test_doctest
test_doctest2
test_MimeWriter
test_SimpleHTTPServer
test_StringIO
test___all__
test___future__
test__locale
test_abc
test_abstract_numbers
test_aepack
test_aepack skipped -- No module named aepack
test_al
test_al skipped -- No module named al
test_anydbm
test_applesingle
test_applesingle skipped -- No module named macostools
test_array
test_ast
test_asynchat
test_asyncore
test_atexit
test_audioop
test_augassign
test_base64
test_bastion
test_bigaddrspace
test_bigmem
test_binascii
test_binhex
test_binop
test_bisect
test_bool
test_bsddb
test_bsddb185
test_bsddb185 skipped -- No module named bsddb185
test_bsddb3
test_bsddb3 skipped -- Use of the `bsddb' resource not enabled
test_buffer
test_bufio
test_bytes
test_bz2
test_calendar
test_call
test_capi
test_cd
test_cd skipped -- No module named cd
test_cfgparser
test_cgi
test_charmapcodec
test_cl
test_cl skipped -- No module named cl
test_class
test_cmath
test_cmd
test_cmd_line
test_cmd_line_script
test_code
test_codeccallbacks
test_codecencodings_cn
test_codecencodings_hk
test_codecencodings_jp
test_codecencodings_kr
test_codecencodings_tw
test_codecmaps_cn
test_codecmaps_hk
test_codecmaps_jp
test_codecmaps_kr
test_codecmaps_tw
test_codecs
test_codeop
test_coding
test_coercion
test_collections
test_colorsys
test_commands
test_compare
test_compile
test_compiler
test_complex
test_complex_args
test_contains
test_contextlib
test_cookie
test_cookielib
test_copy
test_copy_reg
test_cpickle
test_cprofile
test_crypt
test_csv
test_ctypes
test_curses
test_curses skipped -- Use of the `curses' resource not enabled
test_datetime
test_dbm
test_decimal
test_decorators
test_defaultdict
test_deque
test_descr
test_descrtut
test_difflib
test_dircache
test_dis
test_distutils
test_dl
test_docxmlrpc
test_dumbdbm
test_dummy_thread
test_dummy_threading
test_email
test_email_codecs
test_email_renamed
test_enumerate
test_eof
test_epoll
test_epoll skipped -- kernel doesn't support epoll()
test_errno
test_exception_variations
test_extcall
test_fcntl
test_file
test_filecmp
test_fileinput
test_float
test_fnmatch
test_fork1
test_format
test_fpformat
test_fractions
test_frozen
test_ftplib
test_funcattrs
test_functools
test_future
test_future3
test_future4
test_future_builtins
test_gc
test_gdbm
test_generators
test_genericpath
test_genexps
test_getargs
test_getargs2
test_getopt
test_gettext
test_gl
test_gl skipped -- No module named gl
test_glob
test_global
test_grp
test_gzip
test_hash
test_hashlib
test_heapq
test_hmac
test_hotshot
test_htmllib
test_htmlparser
test_httplib
test_imageop
test_imageop skipped -- No module named imgfile
test_imaplib
test_imgfile
test_imgfile skipped -- No module named imgfile
test_imp
test_import
test_importhooks
test_index
test_inspect
test_int_literal
test_io
test_ioctl
test_ioctl skipped -- Unable to open /dev/tty
test_isinstance
test_iter
test_iterlen
test_itertools
test_kqueue
test_kqueue skipped -- test works only on BSD
test_largefile
test_lib2to3
test_lib2to3 skipped -- No module named tests
test_linuxaudiodev
test_linuxaudiodev skipped -- Use of the `audio' resource not enabled
test_list
test_locale
test_logging
test_long
test_long_future
test_longexp
test_macostools
test_macostools skipped -- No module named macostools
test_macpath
test_mailbox
test_marshal
test_math
test_md5
test_mhlib
test_mimetools
test_mimetypes
test_minidom
test_mmap
test_module
test_modulefinder
test_multibytecodec
test_multibytecodec_support
test_multifile
test_mutants
test_mutex
test_netrc
test_new
test_nis
test_normalization
test_ntpath
test_old_mailbox
test_openpty
test_operator
test_optparse
test_os
test_ossaudiodev
test_ossaudiodev skipped -- Use of the `audio' resource not enabled
test_parser
Expecting 's_push: parser stack overflow' in next line
s_push: parser stack overflow
test_peepholer
test_pep247
test_pep263
test_pep277
test_pep277 skipped -- test works only on NT+
test_pep292
test_pep352
test_pickle
test_pickletools
test_pipes
test_pkg
test_pkgimport
test_pkgutil
test_platform
test_plistlib
test_poll
test_popen
[8537 refs]
[8537 refs]
[8537 refs]
test_popen2
test_poplib
test_posix
test_posixpath
test_pow
test_pprint
test_print
test_profile
test_profilehooks
test_property
test_pstats
test_pty
test_pwd
test_py3kwarn
test_py3kwarn skipped -- test.test_py3kwarn must be run with the -3 flag
test_pyclbr
test_pydoc
test_pyexpat
test_queue
test_quopri
[11051 refs]
[11051 refs]
test_random
test_re
test_repr
test_resource
test_rfc822
test_richcmp
test_robotparser
test_runpy
test_sax
test_scope
test_scriptpackages
test_scriptpackages skipped -- No module named aetools
test_select
test_set
test_sets
test_sgmllib
test_sha
test_shelve
test_shlex
test_shutil
test_signal
test_site
test_slice
test_smtplib
test_socket
test_socket_ssl
test_socketserver
test_socketserver skipped -- Use of the `network' resource not enabled
test_softspace
test_sort
test_sqlite
test_ssl
test_startfile
test_startfile skipped -- cannot import name startfile
test_str
test_strftime
test_string
test_stringprep
test_strop
test_strptime
test_struct
test_structmembers
test_structseq
test_subprocess
[8532 refs]
[8534 refs]
[8532 refs]
[8532 refs]
[8532 refs]
[8532 refs]
[8532 refs]
[8532 refs]
[8532 refs]
[8532 refs]
[8534 refs]
[10457 refs]
[8750 refs]
[8534 refs]
Traceback (most recent call last):
File "<string>", line 1, in <module>
EOFError: EOF when reading a line
[8532 refs]
[8532 refs]
[8532 refs]
[8532 refs]
[8532 refs]
[8532 refs]
.
[8532 refs]
[8532 refs]
this bit of output is from a test of stdout in a different process ...
[8532 refs]
Traceback (most recent call last):
File "<string>", line 1, in <module>
EOFError: EOF when reading a line
[8532 refs]
[8532 refs]
[8750 refs]
test test_subprocess failed -- errors occurred; run in verbose mode for details
test_sunaudiodev
test_sunaudiodev skipped -- No module named sunaudiodev
test_sundry
test_symtable
test_syntax
test_sys
[8532 refs]
[8532 refs]
test_tarfile
test_tcl
test_tcl skipped -- No module named _tkinter
test_telnetlib
test_tempfile
[8537 refs]
test_textwrap
test_thread
test_threaded_import
test_threadedtempfile
test_threading
[11736 refs]
[15577 refs]
test_threading_local
test_threadsignals
test_time
test_timeout
test_timeout skipped -- Use of the `network' resource not enabled
test_tokenize
test_trace
test_traceback
test_transformer
test_tuple
test_typechecks
test_ucn
test_unary
test_undocumented_details
test_unicode
test_unicode_file
test_unicode_file skipped -- No Unicode filesystem semantics on this platform.
test_unicodedata
test_univnewlines
test_unpack
test_urllib
test_urllib2
test_urllib2_localnet
test_urllib2net
test_urllib2net skipped -- Use of the `network' resource not enabled
test_urllibnet
test_urllibnet skipped -- Use of the `network' resource not enabled
test_urlparse
test_userdict
test_userlist
test_userstring
test_uu
test_uuid
WARNING: uuid.getnode is unreliable on many platforms.
It is disabled until the code and/or test can be fixed properly.
WARNING: uuid._ifconfig_getnode is unreliable on many platforms.
It is disabled until the code and/or test can be fixed properly.
WARNING: uuid._unixdll_getnode is unreliable on many platforms.
It is disabled until the code and/or test can be fixed properly.
test_wait3
test_wait4
test_warnings
test_wave
test_weakref
test_whichdb
test_winreg
test_winreg skipped -- No module named _winreg
test_winsound
test_winsound skipped -- No module named winsound
test_with
test_wsgiref
test_xdrlib
test_xml_etree
test_xml_etree_c
test_xmllib
test_xmlrpc
test_xpickle
test_xrange
test_zipfile
test_zipfile64
test_zipfile64 skipped -- test requires loads of disk-space bytes and a long time to run
test_zipimport
test_zlib
321 tests OK.
1 test failed:
test_subprocess
32 tests skipped:
test_aepack test_al test_applesingle test_bsddb185 test_bsddb3
test_cd test_cl test_curses test_epoll test_gl test_imageop
test_imgfile test_ioctl test_kqueue test_lib2to3
test_linuxaudiodev test_macostools test_ossaudiodev test_pep277
test_py3kwarn test_scriptpackages test_socketserver test_startfile
test_sunaudiodev test_tcl test_timeout test_unicode_file
test_urllib2net test_urllibnet test_winreg test_winsound
test_zipfile64
3 skips unexpected on linux2:
test_epoll test_lib2to3 test_ioctl
[592703 refs]
1
0
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/821
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: mark.dickinson
BUILD FAILED: failed test
Excerpt from the test logfile:
20 tests failed:
test_array test_bufio test_cookielib test_deque test_distutils
test_fileinput test_gzip test_marshal test_math test_mmap
test_multibytecodec test_pep277 test_set test_subprocess
test_univnewlines test_urllib test_urllib2 test_xmlrpc_net
test_zipfile test_zipimport
======================================================================
ERROR: test_nullpat (test.test_bufio.BufferSizeTest)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_bufio.py", line 59, in test_nullpat
self.drive_one(bytes(1000))
File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_bufio.py", line 49, in drive_one
self.try_one(teststring)
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 279, in __new__
return open(*args, **kwargs)
File "c:\buildbot\work\3.0.heller-windows\build\lib\io.py", line 218, in open
closefd)
IOError: [Errno 13] Permission denied: '@test'
======================================================================
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 49, in drive_one
self.try_one(teststring)
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 279, in __new__
return open(*args, **kwargs)
File "c:\buildbot\work\3.0.heller-windows\build\lib\io.py", line 218, in open
closefd)
IOError: [Errno 13] Permission denied: '@test'
======================================================================
ERROR: test_missing_value (test.test_cookielib.CookieTests)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_cookielib.py", line 373, in test_missing_value
c.save(ignore_expires=True, ignore_discard=True)
File "C:\buildbot\work\3.0.heller-windows\build\lib\_MozillaCookieJar.py", line 118, in save
f = open(filename, "w")
File "c:\buildbot\work\3.0.heller-windows\build\lib\io.py", line 279, in __new__
return open(*args, **kwargs)
File "c:\buildbot\work\3.0.heller-windows\build\lib\io.py", line 218, 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 279, in __new__
return open(*args, **kwargs)
File "c:\buildbot\work\3.0.heller-windows\build\lib\io.py", line 218, 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_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 279, in __new__
return open(*args, **kwargs)
File "c:\buildbot\work\3.0.heller-windows\build\lib\io.py", line 218, in open
closefd)
IOError: [Errno 13] Permission denied: '@test'
======================================================================
ERROR: test_readline (test.test_gzip.TestGzip)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_gzip.py", line 82, in test_readline
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 279, in __new__
return open(*args, **kwargs)
File "c:\buildbot\work\3.0.heller-windows\build\lib\io.py", line 218, in open
closefd)
IOError: [Errno 13] Permission denied: '@test'
======================================================================
ERROR: test_readlines (test.test_gzip.TestGzip)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_gzip.py", line 95, in test_readlines
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 279, in __new__
return open(*args, **kwargs)
File "c:\buildbot\work\3.0.heller-windows\build\lib\io.py", line 218, in open
closefd)
IOError: [Errno 13] Permission denied: '@test'
======================================================================
ERROR: test_seek_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 109, in test_seek_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 279, in __new__
return open(*args, **kwargs)
File "c:\buildbot\work\3.0.heller-windows\build\lib\io.py", line 218, in open
closefd)
IOError: [Errno 13] Permission denied: '@test'
======================================================================
ERROR: test_seek_whence (test.test_gzip.TestGzip)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_gzip.py", line 129, in test_seek_whence
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 279, in __new__
return open(*args, **kwargs)
File "c:\buildbot\work\3.0.heller-windows\build\lib\io.py", line 218, in open
closefd)
IOError: [Errno 13] Permission denied: '@test'
======================================================================
ERROR: test_seek_write (test.test_gzip.TestGzip)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_gzip.py", line 141, in test_seek_write
f = gzip.GzipFile(self.filename, 'w')
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 279, in __new__
return open(*args, **kwargs)
File "c:\buildbot\work\3.0.heller-windows\build\lib\io.py", line 218, in open
closefd)
IOError: [Errno 13] Permission denied: '@test'
======================================================================
ERROR: test_write (test.test_gzip.TestGzip)
----------------------------------------------------------------------
Traceback (most recent call last):
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 279, in __new__
return open(*args, **kwargs)
File "c:\buildbot\work\3.0.heller-windows\build\lib\io.py", line 218, in open
closefd)
IOError: [Errno 13] Permission denied: '@test'
======================================================================
ERROR: test_bool (test.test_marshal.IntTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_marshal.py", line 63, in test_bool
self.helper(b)
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 279, in __new__
return open(*args, **kwargs)
File "c:\buildbot\work\3.0.heller-windows\build\lib\io.py", line 218, in open
closefd)
IOError: [Errno 13] Permission denied: '@test'
======================================================================
ERROR: test_ints (test.test_marshal.IntTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_marshal.py", line 34, in test_ints
self.helper(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 279, in __new__
return open(*args, **kwargs)
File "c:\buildbot\work\3.0.heller-windows\build\lib\io.py", line 218, in open
closefd)
IOError: [Errno 13] Permission denied: '@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 279, in __new__
return open(*args, **kwargs)
File "c:\buildbot\work\3.0.heller-windows\build\lib\io.py", line 218, 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 279, in __new__
return open(*args, **kwargs)
File "c:\buildbot\work\3.0.heller-windows\build\lib\io.py", line 218, 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 279, in __new__
return open(*args, **kwargs)
File "c:\buildbot\work\3.0.heller-windows\build\lib\io.py", line 218, 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 279, in __new__
return open(*args, **kwargs)
File "c:\buildbot\work\3.0.heller-windows\build\lib\io.py", line 218, 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 279, in __new__
return open(*args, **kwargs)
File "c:\buildbot\work\3.0.heller-windows\build\lib\io.py", line 218, 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 279, in __new__
return open(*args, **kwargs)
File "c:\buildbot\work\3.0.heller-windows\build\lib\io.py", line 218, 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 279, in __new__
return open(*args, **kwargs)
File "c:\buildbot\work\3.0.heller-windows\build\lib\io.py", line 218, 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 279, in __new__
return open(*args, **kwargs)
File "c:\buildbot\work\3.0.heller-windows\build\lib\io.py", line 218, in open
closefd)
IOError: [Errno 13] Permission denied: '@test'
======================================================================
ERROR: testAcos (test.test_math.MathTests)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_math.py", line 69, in testAcos
self.assert_(math.isnan(math.acos(NAN)))
ValueError: math domain error
======================================================================
ERROR: testAsin (test.test_math.MathTests)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_math.py", line 88, in testAsin
self.assert_(math.isnan(math.asin(NAN)))
ValueError: math domain error
======================================================================
ERROR: testAsinh (test.test_math.MathTests)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_math.py", line 97, in testAsinh
self.assert_(math.isnan(math.asinh(NAN)))
ValueError: math domain error
======================================================================
ERROR: testAtan (test.test_math.MathTests)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_math.py", line 106, in testAtan
self.assert_(math.isnan(math.atan(NAN)))
ValueError: math domain error
======================================================================
ERROR: testCos (test.test_math.MathTests)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_math.py", line 246, in testCos
self.assert_(math.isnan(math.cos(NAN)))
ValueError: math domain error
======================================================================
ERROR: testCosh (test.test_math.MathTests)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_math.py", line 254, in testCosh
self.assert_(math.isnan(math.cosh(NAN)))
ValueError: math domain error
======================================================================
ERROR: testExp (test.test_math.MathTests)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_math.py", line 269, in testExp
self.assert_(math.isnan(math.exp(NAN)))
ValueError: math domain error
======================================================================
ERROR: testLog (test.test_math.MathTests)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_math.py", line 382, in testLog
self.assert_(math.isnan(math.log(NAN)))
ValueError: math domain error
======================================================================
ERROR: testLog10 (test.test_math.MathTests)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_math.py", line 404, in testLog10
self.assert_(math.isnan(math.log10(NAN)))
ValueError: math domain error
======================================================================
ERROR: testLog1p (test.test_math.MathTests)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_math.py", line 392, in testLog1p
self.assert_(math.isnan(math.log1p(NAN)))
ValueError: math domain error
======================================================================
ERROR: testSin (test.test_math.MathTests)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_math.py", line 591, in testSin
self.assert_(math.isnan(math.sin(NAN)))
ValueError: math domain error
======================================================================
ERROR: testSinh (test.test_math.MathTests)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_math.py", line 600, in testSinh
self.assert_(math.isnan(math.sinh(NAN)))
ValueError: math domain error
======================================================================
ERROR: testSqrt (test.test_math.MathTests)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_math.py", line 609, in testSqrt
self.assert_(math.isnan(math.sqrt(NAN)))
ValueError: math domain error
======================================================================
ERROR: testTan (test.test_math.MathTests)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_math.py", line 622, in testTan
self.assert_(math.isnan(math.tan(NAN)))
ValueError: math domain error
======================================================================
ERROR: testTanh (test.test_math.MathTests)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_math.py", line 630, in testTanh
self.assert_(math.isnan(math.tanh(NAN)))
ValueError: math domain error
======================================================================
FAIL: test_testfile (test.test_math.MathTests)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_math.py", line 747, in test_testfile
self.fail(message)
AssertionError: Unexpected ValueError: math domain error
======================================================================
FAIL: Doctest: ieee754.txt
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\3.0.heller-windows\build\lib\doctest.py", line 2125, in runTest
raise self.failureException(self.format_failure(new.getvalue()))
AssertionError: Failed doctest test for ieee754.txt
======================================================================
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 279, in __new__
return open(*args, **kwargs)
File "c:\buildbot\work\3.0.heller-windows\build\lib\io.py", line 218, 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 279, in __new__
return open(*args, **kwargs)
File "c:\buildbot\work\3.0.heller-windows\build\lib\io.py", line 218, 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 279, in __new__
return open(*args, **kwargs)
File "c:\buildbot\work\3.0.heller-windows\build\lib\io.py", line 218, 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 279, in __new__
return open(*args, **kwargs)
File "c:\buildbot\work\3.0.heller-windows\build\lib\io.py", line 218, 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 279, in __new__
return open(*args, **kwargs)
File "c:\buildbot\work\3.0.heller-windows\build\lib\io.py", line 218, 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 279, in __new__
return open(*args, **kwargs)
File "c:\buildbot\work\3.0.heller-windows\build\lib\io.py", line 218, in open
closefd)
IOError: [Errno 13] Permission denied: '@test\\abc'
======================================================================
ERROR: test_cyclical_print (test.test_set.TestSet)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_set.py", line 297, in test_cyclical_print
fo.close()
UnboundLocalError: local variable 'fo' referenced before assignment
======================================================================
ERROR: test_print (test.test_set.TestBasicOpsSingleton)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_set.py", line 681, in test_print
fo.close()
UnboundLocalError: local variable 'fo' referenced before assignment
======================================================================
ERROR: test_print (test.test_set.TestBasicOpsTuple)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_set.py", line 681, in test_print
fo.close()
UnboundLocalError: local variable 'fo' referenced before assignment
======================================================================
ERROR: test_print (test.test_set.TestBasicOpsTriple)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_set.py", line 681, in test_print
fo.close()
UnboundLocalError: local variable 'fo' referenced before assignment
======================================================================
ERROR: test_print (test.test_set.TestBasicOpsString)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_set.py", line 681, in test_print
fo.close()
UnboundLocalError: local variable 'fo' referenced before assignment
======================================================================
ERROR: test_print (test.test_set.TestBasicOpsBytes)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_set.py", line 681, in test_print
fo.close()
UnboundLocalError: local variable 'fo' referenced before assignment
======================================================================
ERROR: test_print (test.test_set.TestBasicOpsMixedStringBytes)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_set.py", line 681, in test_print
fo.close()
UnboundLocalError: local variable 'fo' referenced before assignment
======================================================================
FAIL: test_send_signal (test.test_subprocess.ProcessTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_subprocess.py", line 687, in test_send_signal
self.assertNotEqual(p.wait(), 0)
AssertionError: 0 == 0
======================================================================
FAIL: test_terminate (test.test_subprocess.ProcessTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_subprocess.py", line 703, in test_terminate
self.assertNotEqual(p.wait(), 0)
AssertionError: 0 == 0
======================================================================
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 279, in __new__
return open(*args, **kwargs)
File "c:\buildbot\work\3.0.heller-windows\build\lib\io.py", line 218, in open
closefd)
IOError: [Errno 13] Permission denied: '@test'
======================================================================
FAIL: test_current_time (test.test_xmlrpc_net.CurrentTimeTest)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_xmlrpc_net.py", line 36, in test_current_time
self.assert_(delta.days <= 1)
AssertionError: None
======================================================================
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 30, in setUp
fp = open(TESTFN, "wb")
File "c:\buildbot\work\3.0.heller-windows\build\lib\io.py", line 279, in __new__
return open(*args, **kwargs)
File "c:\buildbot\work\3.0.heller-windows\build\lib\io.py", line 218, in open
closefd)
IOError: [Errno 13] Permission denied: '@test'
======================================================================
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 30, in setUp
fp = open(TESTFN, "wb")
File "c:\buildbot\work\3.0.heller-windows\build\lib\io.py", line 279, in __new__
return open(*args, **kwargs)
File "c:\buildbot\work\3.0.heller-windows\build\lib\io.py", line 218, in open
closefd)
IOError: [Errno 13] Permission denied: '@test'
======================================================================
ERROR: test_WriteToReadonly (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 279, in __new__
return open(*args, **kwargs)
File "c:\buildbot\work\3.0.heller-windows\build\lib\io.py", line 218, in open
closefd)
IOError: [Errno 13] Permission denied: '@test'
======================================================================
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 279, in __new__
return open(*args, **kwargs)
File "c:\buildbot\work\3.0.heller-windows\build\lib\io.py", line 218, 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 279, in __new__
return open(*args, **kwargs)
File "c:\buildbot\work\3.0.heller-windows\build\lib\io.py", line 218, 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 615, 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 1001, in writestr
self._writecheck(zinfo)
File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 905, 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 553, in testCreateNonExistentFileForAppend
zf.writestr(filename, content)
File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 1001, in writestr
self._writecheck(zinfo)
File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 905, 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 592, 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 1001, in writestr
self._writecheck(zinfo)
File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 905, 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 636, 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 1001, in writestr
self._writecheck(zinfo)
File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 905, 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 670, 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 1001, in writestr
self._writecheck(zinfo)
File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 905, 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 648, 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 1001, in writestr
self._writecheck(zinfo)
File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 905, 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 1177, in writepy
self.write(fname, arcname)
File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 938, in write
self._writecheck(zinfo)
File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 905, 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 1169, in writepy
self.write(fname, arcname)
File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 938, in write
self._writecheck(zinfo)
File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 905, 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 1140, in writepy
self.write(fname, arcname)
File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 938, in write
self._writecheck(zinfo)
File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 905, 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 707, in setUp
self.zip = zipfile.ZipFile(TESTFN, "r")
File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 622, in __init__
self._GetContents()
File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 642, in _GetContents
self._RealGetContents()
File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 679, 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 707, in setUp
self.zip = zipfile.ZipFile(TESTFN, "r")
File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 622, in __init__
self._GetContents()
File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 642, in _GetContents
self._RealGetContents()
File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 679, 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 707, in setUp
self.zip = zipfile.ZipFile(TESTFN, "r")
File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 622, in __init__
self._GetContents()
File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 642, in _GetContents
self._RealGetContents()
File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 679, 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 835, in setUp
zipfp.writestr('ones', '1'*FIXEDTEST_SIZE)
File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 1001, in writestr
self._writecheck(zinfo)
File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 905, 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 835, in setUp
zipfp.writestr('ones', '1'*FIXEDTEST_SIZE)
File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 1001, in writestr
self._writecheck(zinfo)
File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 905, 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 835, in setUp
zipfp.writestr('ones', '1'*FIXEDTEST_SIZE)
File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 1001, in writestr
self._writecheck(zinfo)
File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 905, 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 985, in testIterlinesDeflated
self.iterlinesTest(f, zipfile.ZIP_DEFLATED)
File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipfile.py", line 944, in iterlinesTest
self.makeTestArchive(f, compression)
File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipfile.py", line 904, in makeTestArchive
zipfp.write(fn, fn)
File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 938, in write
self._writecheck(zinfo)
File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 905, 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 968, in testIterlinesStored
self.iterlinesTest(f, zipfile.ZIP_STORED)
File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipfile.py", line 944, in iterlinesTest
self.makeTestArchive(f, compression)
File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipfile.py", line 904, in makeTestArchive
zipfp.write(fn, fn)
File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 938, in write
self._writecheck(zinfo)
File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 905, 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 973, in testReadDeflated
self.readTest(f, zipfile.ZIP_DEFLATED)
File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipfile.py", line 908, in readTest
self.makeTestArchive(f, compression)
File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipfile.py", line 904, in makeTestArchive
zipfp.write(fn, fn)
File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 938, in write
self._writecheck(zinfo)
File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 905, 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 956, in testReadStored
self.readTest(f, zipfile.ZIP_STORED)
File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipfile.py", line 908, in readTest
self.makeTestArchive(f, compression)
File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipfile.py", line 904, in makeTestArchive
zipfp.write(fn, fn)
File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 938, in write
self._writecheck(zinfo)
File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 905, 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 977, in testReadlineDeflated
self.readlineTest(f, zipfile.ZIP_DEFLATED)
File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipfile.py", line 919, in readlineTest
self.makeTestArchive(f, compression)
File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipfile.py", line 904, in makeTestArchive
zipfp.write(fn, fn)
File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 938, in write
self._writecheck(zinfo)
File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 905, 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 960, in testReadlineStored
self.readlineTest(f, zipfile.ZIP_STORED)
File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipfile.py", line 919, in readlineTest
self.makeTestArchive(f, compression)
File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipfile.py", line 904, in makeTestArchive
zipfp.write(fn, fn)
File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 938, in write
self._writecheck(zinfo)
File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 905, 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 981, in testReadlinesDeflated
self.readlinesTest(f, zipfile.ZIP_DEFLATED)
File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipfile.py", line 932, in readlinesTest
self.makeTestArchive(f, compression)
File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipfile.py", line 904, in makeTestArchive
zipfp.write(fn, fn)
File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 938, in write
self._writecheck(zinfo)
File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 905, 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 964, in testReadlinesStored
self.readlinesTest(f, zipfile.ZIP_STORED)
File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipfile.py", line 932, in readlinesTest
self.makeTestArchive(f, compression)
File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipfile.py", line 904, in makeTestArchive
zipfp.write(fn, fn)
File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 938, in write
self._writecheck(zinfo)
File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 905, 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 807, in testOpenStored
self.zipOpenTest(f, zipfile.ZIP_STORED)
File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipfile.py", line 776, in zipOpenTest
self.makeTestArchive(f, compression)
File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipfile.py", line 756, in makeTestArchive
zipfp.write(TESTFN, "another.name")
File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 938, in write
self._writecheck(zinfo)
File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 905, 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 829, in testRandomOpenStored
self.zipRandomOpenTest(f, zipfile.ZIP_STORED)
File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipfile.py", line 810, in zipRandomOpenTest
self.makeTestArchive(f, compression)
File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipfile.py", line 756, in makeTestArchive
zipfp.write(TESTFN, "another.name")
File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 938, in write
self._writecheck(zinfo)
File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 905, 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 773, in testStored
self.zipTest(f, zipfile.ZIP_STORED)
File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipfile.py", line 761, in zipTest
self.makeTestArchive(f, compression)
File "C:\buildbot\work\3.0.heller-windows\build\lib\test\test_zipfile.py", line 756, in makeTestArchive
zipfp.write(TESTFN, "another.name")
File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 938, in write
self._writecheck(zinfo)
File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 905, 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 1001, in writestr
self._writecheck(zinfo)
File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 905, 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 1001, in writestr
self._writecheck(zinfo)
File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 905, 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 1001, in writestr
self._writecheck(zinfo)
File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 905, 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 1001, in writestr
self._writecheck(zinfo)
File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 905, 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 1001, in writestr
self._writecheck(zinfo)
File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 905, 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 1001, in writestr
self._writecheck(zinfo)
File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 905, 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 1001, in writestr
self._writecheck(zinfo)
File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 905, 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 609, in __init__
self.fp = io.open(file, modeDict[mode])
File "c:\buildbot\work\3.0.heller-windows\build\lib\io.py", line 218, 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 1001, in writestr
self._writecheck(zinfo)
File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 905, 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 1001, in writestr
self._writecheck(zinfo)
File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 905, 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 1001, in writestr
self._writecheck(zinfo)
File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 905, 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 1001, in writestr
self._writecheck(zinfo)
File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 905, 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 1001, in writestr
self._writecheck(zinfo)
File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 905, 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 1001, in writestr
self._writecheck(zinfo)
File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 905, 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 1001, in writestr
self._writecheck(zinfo)
File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 905, 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 1001, in writestr
self._writecheck(zinfo)
File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 905, 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 1001, in writestr
self._writecheck(zinfo)
File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 905, 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 1001, in writestr
self._writecheck(zinfo)
File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 905, 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 1001, in writestr
self._writecheck(zinfo)
File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 905, 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 1001, in writestr
self._writecheck(zinfo)
File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 905, 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 1001, in writestr
self._writecheck(zinfo)
File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 905, 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 1001, in writestr
self._writecheck(zinfo)
File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 905, 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 1001, in writestr
self._writecheck(zinfo)
File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 905, 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 1001, in writestr
self._writecheck(zinfo)
File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 905, 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 609, in __init__
self.fp = io.open(file, modeDict[mode])
File "c:\buildbot\work\3.0.heller-windows\build\lib\io.py", line 218, 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 1001, in writestr
self._writecheck(zinfo)
File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 905, 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 1001, in writestr
self._writecheck(zinfo)
File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 905, 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 1001, in writestr
self._writecheck(zinfo)
File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 905, 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 1001, in writestr
self._writecheck(zinfo)
File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 905, 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 1001, in writestr
self._writecheck(zinfo)
File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 905, 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 1001, in writestr
self._writecheck(zinfo)
File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 905, 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 1001, in writestr
self._writecheck(zinfo)
File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 905, 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 1001, in writestr
self._writecheck(zinfo)
File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 905, 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 1001, in writestr
self._writecheck(zinfo)
File "C:\buildbot\work\3.0.heller-windows\build\lib\zipfile.py", line 905, in _writecheck
raise LargeZipFile("Filesize would require ZIP64 extensions")
zipfile.LargeZipFile: Filesize would require ZIP64 extensions
sincerely,
-The Buildbot
1
0
The Buildbot has detected a new failure of x86 XP-3 trunk.
Full details are available at:
http://www.python.org/dev/buildbot/all/x86%20XP-3%20trunk/builds/1336
Buildbot URL: http://www.python.org/dev/buildbot/all/
Buildslave for this Build: heller-windows
Build Reason:
Build Source Stamp: [branch trunk] HEAD
Blamelist: benjamin.peterson
BUILD FAILED: failed test
Excerpt from the test logfile:
23 tests failed:
test_anydbm test_bsddb test_bufio test_builtin test_bz2
test_cookielib test_deque test_distutils test_file test_fileinput
test_gzip test_io test_marshal test_mmap test_set test_subprocess
test_univnewlines test_urllib test_urllib2 test_uu test_whichdb
test_zipfile test_zipimport
======================================================================
ERROR: test_anydbm_creation (test.test_anydbm.AnyDBMTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_anydbm.py", line 37, in test_anydbm_creation
f = anydbm.open(_fname, 'c')
File "C:\buildbot\work\trunk.heller-windows\build\lib\anydbm.py", line 83, in open
return mod.open(file, flag, mode)
File "C:\buildbot\work\trunk.heller-windows\build\lib\dbhash.py", line 16, in open
return bsddb.hashopen(file, flag, mode)
File "C:\buildbot\work\trunk.heller-windows\build\lib\bsddb\__init__.py", line 310, in hashopen
d.open(file, db.DB_HASH, flags, mode)
DBFileExistsError: (17, 'File exists -- __fop_file_setup: Retry limit (100) exceeded')
======================================================================
ERROR: test_anydbm_keys (test.test_anydbm.AnyDBMTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_anydbm.py", line 58, in test_anydbm_keys
self.init_db()
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_anydbm.py", line 69, in init_db
f = anydbm.open(_fname, 'n')
File "C:\buildbot\work\trunk.heller-windows\build\lib\anydbm.py", line 83, in open
return mod.open(file, flag, mode)
File "C:\buildbot\work\trunk.heller-windows\build\lib\dbhash.py", line 16, in open
return bsddb.hashopen(file, flag, mode)
File "C:\buildbot\work\trunk.heller-windows\build\lib\bsddb\__init__.py", line 310, in hashopen
d.open(file, db.DB_HASH, flags, mode)
DBFileExistsError: (17, 'File exists -- __fop_file_setup: Retry limit (100) exceeded')
======================================================================
ERROR: test_anydbm_modification (test.test_anydbm.AnyDBMTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_anydbm.py", line 45, in test_anydbm_modification
self.init_db()
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_anydbm.py", line 69, in init_db
f = anydbm.open(_fname, 'n')
File "C:\buildbot\work\trunk.heller-windows\build\lib\anydbm.py", line 83, in open
return mod.open(file, flag, mode)
File "C:\buildbot\work\trunk.heller-windows\build\lib\dbhash.py", line 16, in open
return bsddb.hashopen(file, flag, mode)
File "C:\buildbot\work\trunk.heller-windows\build\lib\bsddb\__init__.py", line 310, in hashopen
d.open(file, db.DB_HASH, flags, mode)
DBFileExistsError: (17, 'File exists -- __fop_file_setup: Retry limit (100) exceeded')
======================================================================
ERROR: test_anydbm_read (test.test_anydbm.AnyDBMTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_anydbm.py", line 52, in test_anydbm_read
self.init_db()
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_anydbm.py", line 69, in init_db
f = anydbm.open(_fname, 'n')
File "C:\buildbot\work\trunk.heller-windows\build\lib\anydbm.py", line 83, in open
return mod.open(file, flag, mode)
File "C:\buildbot\work\trunk.heller-windows\build\lib\dbhash.py", line 16, in open
return bsddb.hashopen(file, flag, mode)
File "C:\buildbot\work\trunk.heller-windows\build\lib\bsddb\__init__.py", line 310, in hashopen
d.open(file, db.DB_HASH, flags, mode)
DBFileExistsError: (17, 'File exists -- __fop_file_setup: Retry limit (100) exceeded')
======================================================================
ERROR: test__no_deadlock_first (test.test_bsddb.TestBTree)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_bsddb.py", line 16, in setUp
self.f = self.openmethod[0](self.fname, self.openflag, cachesize=32768)
File "C:\buildbot\work\trunk.heller-windows\build\lib\bsddb\__init__.py", line 327, in btopen
d.open(file, db.DB_BTREE, flags, mode)
DBFileExistsError: (17, 'File exists -- __fop_file_setup: Retry limit (100) exceeded')
======================================================================
ERROR: test_change (test.test_bsddb.TestBTree)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_bsddb.py", line 16, in setUp
self.f = self.openmethod[0](self.fname, self.openflag, cachesize=32768)
File "C:\buildbot\work\trunk.heller-windows\build\lib\bsddb\__init__.py", line 327, in btopen
d.open(file, db.DB_BTREE, flags, mode)
DBFileExistsError: (17, 'File exists -- __fop_file_setup: Retry limit (100) exceeded')
======================================================================
ERROR: test_clear (test.test_bsddb.TestBTree)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_bsddb.py", line 16, in setUp
self.f = self.openmethod[0](self.fname, self.openflag, cachesize=32768)
File "C:\buildbot\work\trunk.heller-windows\build\lib\bsddb\__init__.py", line 327, in btopen
d.open(file, db.DB_BTREE, flags, mode)
DBFileExistsError: (17, 'File exists -- __fop_file_setup: Retry limit (100) exceeded')
======================================================================
ERROR: test_close_and_reopen (test.test_bsddb.TestBTree)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_bsddb.py", line 16, in setUp
self.f = self.openmethod[0](self.fname, self.openflag, cachesize=32768)
File "C:\buildbot\work\trunk.heller-windows\build\lib\bsddb\__init__.py", line 327, in btopen
d.open(file, db.DB_BTREE, flags, mode)
DBFileExistsError: (17, 'File exists -- __fop_file_setup: Retry limit (100) exceeded')
======================================================================
ERROR: test_contains (test.test_bsddb.TestBTree)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_bsddb.py", line 16, in setUp
self.f = self.openmethod[0](self.fname, self.openflag, cachesize=32768)
File "C:\buildbot\work\trunk.heller-windows\build\lib\bsddb\__init__.py", line 327, in btopen
d.open(file, db.DB_BTREE, flags, mode)
DBFileExistsError: (17, 'File exists -- __fop_file_setup: Retry limit (100) exceeded')
======================================================================
ERROR: test_first_next_looping (test.test_bsddb.TestBTree)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_bsddb.py", line 16, in setUp
self.f = self.openmethod[0](self.fname, self.openflag, cachesize=32768)
File "C:\buildbot\work\trunk.heller-windows\build\lib\bsddb\__init__.py", line 327, in btopen
d.open(file, db.DB_BTREE, flags, mode)
DBFileExistsError: (17, 'File exists -- __fop_file_setup: Retry limit (100) exceeded')
======================================================================
ERROR: test_first_while_deleting (test.test_bsddb.TestBTree)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_bsddb.py", line 16, in setUp
self.f = self.openmethod[0](self.fname, self.openflag, cachesize=32768)
File "C:\buildbot\work\trunk.heller-windows\build\lib\bsddb\__init__.py", line 327, in btopen
d.open(file, db.DB_BTREE, flags, mode)
DBFileExistsError: (17, 'File exists -- __fop_file_setup: Retry limit (100) exceeded')
======================================================================
ERROR: test_for_cursor_memleak (test.test_bsddb.TestBTree)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_bsddb.py", line 16, in setUp
self.f = self.openmethod[0](self.fname, self.openflag, cachesize=32768)
File "C:\buildbot\work\trunk.heller-windows\build\lib\bsddb\__init__.py", line 327, in btopen
d.open(file, db.DB_BTREE, flags, mode)
DBFileExistsError: (17, 'File exists -- __fop_file_setup: Retry limit (100) exceeded')
======================================================================
ERROR: test_get (test.test_bsddb.TestBTree)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_bsddb.py", line 16, in setUp
self.f = self.openmethod[0](self.fname, self.openflag, cachesize=32768)
File "C:\buildbot\work\trunk.heller-windows\build\lib\bsddb\__init__.py", line 327, in btopen
d.open(file, db.DB_BTREE, flags, mode)
DBFileExistsError: (17, 'File exists -- __fop_file_setup: Retry limit (100) exceeded')
======================================================================
ERROR: test_getitem (test.test_bsddb.TestBTree)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_bsddb.py", line 16, in setUp
self.f = self.openmethod[0](self.fname, self.openflag, cachesize=32768)
File "C:\buildbot\work\trunk.heller-windows\build\lib\bsddb\__init__.py", line 327, in btopen
d.open(file, db.DB_BTREE, flags, mode)
DBFileExistsError: (17, 'File exists -- __fop_file_setup: Retry limit (100) exceeded')
======================================================================
ERROR: test_has_key (test.test_bsddb.TestBTree)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_bsddb.py", line 16, in setUp
self.f = self.openmethod[0](self.fname, self.openflag, cachesize=32768)
File "C:\buildbot\work\trunk.heller-windows\build\lib\bsddb\__init__.py", line 327, in btopen
d.open(file, db.DB_BTREE, flags, mode)
DBFileExistsError: (17, 'File exists -- __fop_file_setup: Retry limit (100) exceeded')
======================================================================
ERROR: test_iter_while_modifying_values (test.test_bsddb.TestBTree)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_bsddb.py", line 16, in setUp
self.f = self.openmethod[0](self.fname, self.openflag, cachesize=32768)
File "C:\buildbot\work\trunk.heller-windows\build\lib\bsddb\__init__.py", line 327, in btopen
d.open(file, db.DB_BTREE, flags, mode)
DBFileExistsError: (17, 'File exists -- __fop_file_setup: Retry limit (100) exceeded')
======================================================================
ERROR: test_iteritems_while_modifying_values (test.test_bsddb.TestBTree)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_bsddb.py", line 16, in setUp
self.f = self.openmethod[0](self.fname, self.openflag, cachesize=32768)
File "C:\buildbot\work\trunk.heller-windows\build\lib\bsddb\__init__.py", line 327, in btopen
d.open(file, db.DB_BTREE, flags, mode)
DBFileExistsError: (17, 'File exists -- __fop_file_setup: Retry limit (100) exceeded')
======================================================================
ERROR: test_keyordering (test.test_bsddb.TestBTree)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_bsddb.py", line 16, in setUp
self.f = self.openmethod[0](self.fname, self.openflag, cachesize=32768)
File "C:\buildbot\work\trunk.heller-windows\build\lib\bsddb\__init__.py", line 327, in btopen
d.open(file, db.DB_BTREE, flags, mode)
DBFileExistsError: (17, 'File exists -- __fop_file_setup: Retry limit (100) exceeded')
======================================================================
ERROR: test_last_while_deleting (test.test_bsddb.TestBTree)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_bsddb.py", line 16, in setUp
self.f = self.openmethod[0](self.fname, self.openflag, cachesize=32768)
File "C:\buildbot\work\trunk.heller-windows\build\lib\bsddb\__init__.py", line 327, in btopen
d.open(file, db.DB_BTREE, flags, mode)
DBFileExistsError: (17, 'File exists -- __fop_file_setup: Retry limit (100) exceeded')
======================================================================
ERROR: test_len (test.test_bsddb.TestBTree)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_bsddb.py", line 16, in setUp
self.f = self.openmethod[0](self.fname, self.openflag, cachesize=32768)
File "C:\buildbot\work\trunk.heller-windows\build\lib\bsddb\__init__.py", line 327, in btopen
d.open(file, db.DB_BTREE, flags, mode)
DBFileExistsError: (17, 'File exists -- __fop_file_setup: Retry limit (100) exceeded')
======================================================================
ERROR: test_mapping_iteration_methods (test.test_bsddb.TestBTree)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_bsddb.py", line 16, in setUp
self.f = self.openmethod[0](self.fname, self.openflag, cachesize=32768)
File "C:\buildbot\work\trunk.heller-windows\build\lib\bsddb\__init__.py", line 327, in btopen
d.open(file, db.DB_BTREE, flags, mode)
DBFileExistsError: (17, 'File exists -- __fop_file_setup: Retry limit (100) exceeded')
======================================================================
ERROR: test_pop (test.test_bsddb.TestBTree)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_bsddb.py", line 16, in setUp
self.f = self.openmethod[0](self.fname, self.openflag, cachesize=32768)
File "C:\buildbot\work\trunk.heller-windows\build\lib\bsddb\__init__.py", line 327, in btopen
d.open(file, db.DB_BTREE, flags, mode)
DBFileExistsError: (17, 'File exists -- __fop_file_setup: Retry limit (100) exceeded')
======================================================================
ERROR: test_popitem (test.test_bsddb.TestBTree)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_bsddb.py", line 16, in setUp
self.f = self.openmethod[0](self.fname, self.openflag, cachesize=32768)
File "C:\buildbot\work\trunk.heller-windows\build\lib\bsddb\__init__.py", line 327, in btopen
d.open(file, db.DB_BTREE, flags, mode)
DBFileExistsError: (17, 'File exists -- __fop_file_setup: Retry limit (100) exceeded')
======================================================================
ERROR: test_previous_last_looping (test.test_bsddb.TestBTree)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_bsddb.py", line 16, in setUp
self.f = self.openmethod[0](self.fname, self.openflag, cachesize=32768)
File "C:\buildbot\work\trunk.heller-windows\build\lib\bsddb\__init__.py", line 327, in btopen
d.open(file, db.DB_BTREE, flags, mode)
DBFileExistsError: (17, 'File exists -- __fop_file_setup: Retry limit (100) exceeded')
======================================================================
ERROR: test_set_location (test.test_bsddb.TestBTree)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_bsddb.py", line 16, in setUp
self.f = self.openmethod[0](self.fname, self.openflag, cachesize=32768)
File "C:\buildbot\work\trunk.heller-windows\build\lib\bsddb\__init__.py", line 327, in btopen
d.open(file, db.DB_BTREE, flags, mode)
DBFileExistsError: (17, 'File exists -- __fop_file_setup: Retry limit (100) exceeded')
======================================================================
ERROR: test_setdefault (test.test_bsddb.TestBTree)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_bsddb.py", line 16, in setUp
self.f = self.openmethod[0](self.fname, self.openflag, cachesize=32768)
File "C:\buildbot\work\trunk.heller-windows\build\lib\bsddb\__init__.py", line 327, in btopen
d.open(file, db.DB_BTREE, flags, mode)
DBFileExistsError: (17, 'File exists -- __fop_file_setup: Retry limit (100) exceeded')
======================================================================
ERROR: test_update (test.test_bsddb.TestBTree)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_bsddb.py", line 16, in setUp
self.f = self.openmethod[0](self.fname, self.openflag, cachesize=32768)
File "C:\buildbot\work\trunk.heller-windows\build\lib\bsddb\__init__.py", line 327, in btopen
d.open(file, db.DB_BTREE, flags, mode)
DBFileExistsError: (17, 'File exists -- __fop_file_setup: Retry limit (100) exceeded')
======================================================================
ERROR: test__no_deadlock_first (test.test_bsddb.TestHashTable)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_bsddb.py", line 16, in setUp
self.f = self.openmethod[0](self.fname, self.openflag, cachesize=32768)
File "C:\buildbot\work\trunk.heller-windows\build\lib\bsddb\__init__.py", line 310, in hashopen
d.open(file, db.DB_HASH, flags, mode)
DBFileExistsError: (17, 'File exists -- __fop_file_setup: Retry limit (100) exceeded')
======================================================================
ERROR: test_change (test.test_bsddb.TestHashTable)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_bsddb.py", line 16, in setUp
self.f = self.openmethod[0](self.fname, self.openflag, cachesize=32768)
File "C:\buildbot\work\trunk.heller-windows\build\lib\bsddb\__init__.py", line 310, in hashopen
d.open(file, db.DB_HASH, flags, mode)
DBFileExistsError: (17, 'File exists -- __fop_file_setup: Retry limit (100) exceeded')
======================================================================
ERROR: test_clear (test.test_bsddb.TestHashTable)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_bsddb.py", line 16, in setUp
self.f = self.openmethod[0](self.fname, self.openflag, cachesize=32768)
File "C:\buildbot\work\trunk.heller-windows\build\lib\bsddb\__init__.py", line 310, in hashopen
d.open(file, db.DB_HASH, flags, mode)
DBFileExistsError: (17, 'File exists -- __fop_file_setup: Retry limit (100) exceeded')
======================================================================
ERROR: test_close_and_reopen (test.test_bsddb.TestHashTable)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_bsddb.py", line 16, in setUp
self.f = self.openmethod[0](self.fname, self.openflag, cachesize=32768)
File "C:\buildbot\work\trunk.heller-windows\build\lib\bsddb\__init__.py", line 310, in hashopen
d.open(file, db.DB_HASH, flags, mode)
DBFileExistsError: (17, 'File exists -- __fop_file_setup: Retry limit (100) exceeded')
======================================================================
ERROR: test_contains (test.test_bsddb.TestHashTable)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_bsddb.py", line 16, in setUp
self.f = self.openmethod[0](self.fname, self.openflag, cachesize=32768)
File "C:\buildbot\work\trunk.heller-windows\build\lib\bsddb\__init__.py", line 310, in hashopen
d.open(file, db.DB_HASH, flags, mode)
DBFileExistsError: (17, 'File exists -- __fop_file_setup: Retry limit (100) exceeded')
======================================================================
ERROR: test_first_next_looping (test.test_bsddb.TestHashTable)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_bsddb.py", line 16, in setUp
self.f = self.openmethod[0](self.fname, self.openflag, cachesize=32768)
File "C:\buildbot\work\trunk.heller-windows\build\lib\bsddb\__init__.py", line 310, in hashopen
d.open(file, db.DB_HASH, flags, mode)
DBFileExistsError: (17, 'File exists -- __fop_file_setup: Retry limit (100) exceeded')
======================================================================
ERROR: test_first_while_deleting (test.test_bsddb.TestHashTable)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_bsddb.py", line 16, in setUp
self.f = self.openmethod[0](self.fname, self.openflag, cachesize=32768)
File "C:\buildbot\work\trunk.heller-windows\build\lib\bsddb\__init__.py", line 310, in hashopen
d.open(file, db.DB_HASH, flags, mode)
DBFileExistsError: (17, 'File exists -- __fop_file_setup: Retry limit (100) exceeded')
======================================================================
ERROR: test_for_cursor_memleak (test.test_bsddb.TestHashTable)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_bsddb.py", line 16, in setUp
self.f = self.openmethod[0](self.fname, self.openflag, cachesize=32768)
File "C:\buildbot\work\trunk.heller-windows\build\lib\bsddb\__init__.py", line 310, in hashopen
d.open(file, db.DB_HASH, flags, mode)
DBFileExistsError: (17, 'File exists -- __fop_file_setup: Retry limit (100) exceeded')
======================================================================
ERROR: test_get (test.test_bsddb.TestHashTable)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_bsddb.py", line 16, in setUp
self.f = self.openmethod[0](self.fname, self.openflag, cachesize=32768)
File "C:\buildbot\work\trunk.heller-windows\build\lib\bsddb\__init__.py", line 310, in hashopen
d.open(file, db.DB_HASH, flags, mode)
DBFileExistsError: (17, 'File exists -- __fop_file_setup: Retry limit (100) exceeded')
======================================================================
ERROR: test_getitem (test.test_bsddb.TestHashTable)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_bsddb.py", line 16, in setUp
self.f = self.openmethod[0](self.fname, self.openflag, cachesize=32768)
File "C:\buildbot\work\trunk.heller-windows\build\lib\bsddb\__init__.py", line 310, in hashopen
d.open(file, db.DB_HASH, flags, mode)
DBFileExistsError: (17, 'File exists -- __fop_file_setup: Retry limit (100) exceeded')
======================================================================
ERROR: test_has_key (test.test_bsddb.TestHashTable)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_bsddb.py", line 16, in setUp
self.f = self.openmethod[0](self.fname, self.openflag, cachesize=32768)
File "C:\buildbot\work\trunk.heller-windows\build\lib\bsddb\__init__.py", line 310, in hashopen
d.open(file, db.DB_HASH, flags, mode)
DBFileExistsError: (17, 'File exists -- __fop_file_setup: Retry limit (100) exceeded')
======================================================================
ERROR: test_iter_while_modifying_values (test.test_bsddb.TestHashTable)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_bsddb.py", line 16, in setUp
self.f = self.openmethod[0](self.fname, self.openflag, cachesize=32768)
File "C:\buildbot\work\trunk.heller-windows\build\lib\bsddb\__init__.py", line 310, in hashopen
d.open(file, db.DB_HASH, flags, mode)
DBFileExistsError: (17, 'File exists -- __fop_file_setup: Retry limit (100) exceeded')
======================================================================
ERROR: test_iteritems_while_modifying_values (test.test_bsddb.TestHashTable)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_bsddb.py", line 16, in setUp
self.f = self.openmethod[0](self.fname, self.openflag, cachesize=32768)
File "C:\buildbot\work\trunk.heller-windows\build\lib\bsddb\__init__.py", line 310, in hashopen
d.open(file, db.DB_HASH, flags, mode)
DBFileExistsError: (17, 'File exists -- __fop_file_setup: Retry limit (100) exceeded')
======================================================================
ERROR: test_keyordering (test.test_bsddb.TestHashTable)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_bsddb.py", line 16, in setUp
self.f = self.openmethod[0](self.fname, self.openflag, cachesize=32768)
File "C:\buildbot\work\trunk.heller-windows\build\lib\bsddb\__init__.py", line 310, in hashopen
d.open(file, db.DB_HASH, flags, mode)
DBFileExistsError: (17, 'File exists -- __fop_file_setup: Retry limit (100) exceeded')
======================================================================
ERROR: test_last_while_deleting (test.test_bsddb.TestHashTable)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_bsddb.py", line 16, in setUp
self.f = self.openmethod[0](self.fname, self.openflag, cachesize=32768)
File "C:\buildbot\work\trunk.heller-windows\build\lib\bsddb\__init__.py", line 310, in hashopen
d.open(file, db.DB_HASH, flags, mode)
DBFileExistsError: (17, 'File exists -- __fop_file_setup: Retry limit (100) exceeded')
======================================================================
ERROR: test_len (test.test_bsddb.TestHashTable)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_bsddb.py", line 16, in setUp
self.f = self.openmethod[0](self.fname, self.openflag, cachesize=32768)
File "C:\buildbot\work\trunk.heller-windows\build\lib\bsddb\__init__.py", line 310, in hashopen
d.open(file, db.DB_HASH, flags, mode)
DBFileExistsError: (17, 'File exists -- __fop_file_setup: Retry limit (100) exceeded')
======================================================================
ERROR: test_mapping_iteration_methods (test.test_bsddb.TestHashTable)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_bsddb.py", line 16, in setUp
self.f = self.openmethod[0](self.fname, self.openflag, cachesize=32768)
File "C:\buildbot\work\trunk.heller-windows\build\lib\bsddb\__init__.py", line 310, in hashopen
d.open(file, db.DB_HASH, flags, mode)
DBFileExistsError: (17, 'File exists -- __fop_file_setup: Retry limit (100) exceeded')
======================================================================
ERROR: test_pop (test.test_bsddb.TestHashTable)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_bsddb.py", line 16, in setUp
self.f = self.openmethod[0](self.fname, self.openflag, cachesize=32768)
File "C:\buildbot\work\trunk.heller-windows\build\lib\bsddb\__init__.py", line 310, in hashopen
d.open(file, db.DB_HASH, flags, mode)
DBFileExistsError: (17, 'File exists -- __fop_file_setup: Retry limit (100) exceeded')
======================================================================
ERROR: test_popitem (test.test_bsddb.TestHashTable)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_bsddb.py", line 16, in setUp
self.f = self.openmethod[0](self.fname, self.openflag, cachesize=32768)
File "C:\buildbot\work\trunk.heller-windows\build\lib\bsddb\__init__.py", line 310, in hashopen
d.open(file, db.DB_HASH, flags, mode)
DBFileExistsError: (17, 'File exists -- __fop_file_setup: Retry limit (100) exceeded')
======================================================================
ERROR: test_previous_last_looping (test.test_bsddb.TestHashTable)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_bsddb.py", line 16, in setUp
self.f = self.openmethod[0](self.fname, self.openflag, cachesize=32768)
File "C:\buildbot\work\trunk.heller-windows\build\lib\bsddb\__init__.py", line 310, in hashopen
d.open(file, db.DB_HASH, flags, mode)
DBFileExistsError: (17, 'File exists -- __fop_file_setup: Retry limit (100) exceeded')
======================================================================
ERROR: test_set_location (test.test_bsddb.TestHashTable)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_bsddb.py", line 16, in setUp
self.f = self.openmethod[0](self.fname, self.openflag, cachesize=32768)
File "C:\buildbot\work\trunk.heller-windows\build\lib\bsddb\__init__.py", line 310, in hashopen
d.open(file, db.DB_HASH, flags, mode)
DBFileExistsError: (17, 'File exists -- __fop_file_setup: Retry limit (100) exceeded')
======================================================================
ERROR: test_setdefault (test.test_bsddb.TestHashTable)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_bsddb.py", line 16, in setUp
self.f = self.openmethod[0](self.fname, self.openflag, cachesize=32768)
File "C:\buildbot\work\trunk.heller-windows\build\lib\bsddb\__init__.py", line 310, in hashopen
d.open(file, db.DB_HASH, flags, mode)
DBFileExistsError: (17, 'File exists -- __fop_file_setup: Retry limit (100) exceeded')
======================================================================
ERROR: test_update (test.test_bsddb.TestHashTable)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_bsddb.py", line 16, in setUp
self.f = self.openmethod[0](self.fname, self.openflag, cachesize=32768)
File "C:\buildbot\work\trunk.heller-windows\build\lib\bsddb\__init__.py", line 310, in hashopen
d.open(file, db.DB_HASH, flags, mode)
DBFileExistsError: (17, 'File exists -- __fop_file_setup: Retry limit (100) exceeded')
======================================================================
ERROR: test_nullpat (test.test_bufio.BufferSizeTest)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_bufio.py", line 59, in test_nullpat
self.drive_one("\0" * 1000)
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_bufio.py", line 51, in drive_one
self.try_one(teststring[:-1])
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_bufio.py", line 21, in try_one
f = open(test_support.TESTFN, "wb")
IOError: [Errno 13] Permission denied: '@test'
======================================================================
ERROR: test_primepat (test.test_bufio.BufferSizeTest)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_bufio.py", line 56, in test_primepat
self.drive_one("1234567890\00\01\02\03\04\05\06")
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_bufio.py", line 49, in drive_one
self.try_one(teststring)
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_bufio.py", line 21, in try_one
f = open(test_support.TESTFN, "wb")
IOError: [Errno 13] Permission denied: '@test'
Traceback (most recent call last):
File "../lib/test/regrtest.py", line 547, in runtest_inner
the_package = __import__(abstest, globals(), locals(), [])
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_builtin.py", line 104, in <module>
class BuiltinTest(unittest.TestCase):
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_builtin.py", line 455, in BuiltinTest
f = open(TESTFN, 'w')
IOError: [Errno 13] Permission denied: '@test'
======================================================================
ERROR: test_maxlen (test.test_deque.TestBasic)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_deque.py", line 79, in test_maxlen
fo = open(test_support.TESTFN, "wb")
IOError: [Errno 13] Permission denied: '@test'
======================================================================
ERROR: test_print (test.test_deque.TestBasic)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_deque.py", line 286, in test_print
fo = open(test_support.TESTFN, "wb")
IOError: [Errno 13] Permission denied: '@test'
======================================================================
ERROR: test_build (distutils.tests.test_build_scripts.BuildScriptsTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\trunk.heller-windows\build\lib\distutils\tests\support.py", line 34, in tearDown
shutil.rmtree(d)
File "c:\buildbot\work\trunk.heller-windows\build\lib\shutil.py", line 188, in rmtree
onerror(os.rmdir, path, sys.exc_info())
File "c:\buildbot\work\trunk.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\\tmpfox8bh'
======================================================================
ERROR: test_installation (distutils.tests.test_install_scripts.InstallScriptsTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\trunk.heller-windows\build\lib\distutils\tests\support.py", line 34, in tearDown
shutil.rmtree(d)
File "c:\buildbot\work\trunk.heller-windows\build\lib\shutil.py", line 188, in rmtree
onerror(os.rmdir, path, sys.exc_info())
File "c:\buildbot\work\trunk.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\\tmppgot2q'
======================================================================
ERROR: testTruncateOnWindows (test.test_file.OtherFileTests)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_file.py", line 188, in testTruncateOnWindows
os.unlink(TESTFN)
WindowsError: [Error 5] Access is denied: '@test'
======================================================================
ERROR: testUnicodeOpen (test.test_file.OtherFileTests)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_file.py", line 149, in testUnicodeOpen
f = open(unicode(TESTFN), "w")
IOError: [Errno 13] Permission denied: u'@test'
======================================================================
ERROR: testExit (test.test_file.FileSubclassTests)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_file.py", line 341, in testExit
with C(TESTFN, 'w') as f:
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_file.py", line 336, in __init__
file.__init__(self, *args)
IOError: [Errno 13] Permission denied: '@test'
======================================================================
ERROR: test_close_open (test.test_file.FileThreadingTests)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_file.py", line 354, in setUp
with open(self.filename, "w") as f:
IOError: [Errno 13] Permission denied: '@test'
======================================================================
ERROR: test_close_open_flush (test.test_file.FileThreadingTests)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_file.py", line 354, in setUp
with open(self.filename, "w") as f:
IOError: [Errno 13] Permission denied: '@test'
======================================================================
ERROR: test_close_open_isatty (test.test_file.FileThreadingTests)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_file.py", line 354, in setUp
with open(self.filename, "w") as f:
IOError: [Errno 13] Permission denied: '@test'
======================================================================
ERROR: test_close_open_iter (test.test_file.FileThreadingTests)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_file.py", line 354, in setUp
with open(self.filename, "w") as f:
IOError: [Errno 13] Permission denied: '@test'
======================================================================
ERROR: test_close_open_print (test.test_file.FileThreadingTests)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_file.py", line 354, in setUp
with open(self.filename, "w") as f:
IOError: [Errno 13] Permission denied: '@test'
======================================================================
ERROR: test_close_open_read (test.test_file.FileThreadingTests)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_file.py", line 354, in setUp
with open(self.filename, "w") as f:
IOError: [Errno 13] Permission denied: '@test'
======================================================================
ERROR: test_close_open_readinto (test.test_file.FileThreadingTests)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_file.py", line 354, in setUp
with open(self.filename, "w") as f:
IOError: [Errno 13] Permission denied: '@test'
======================================================================
ERROR: test_close_open_readline (test.test_file.FileThreadingTests)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_file.py", line 354, in setUp
with open(self.filename, "w") as f:
IOError: [Errno 13] Permission denied: '@test'
======================================================================
ERROR: test_close_open_readlines (test.test_file.FileThreadingTests)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_file.py", line 354, in setUp
with open(self.filename, "w") as f:
IOError: [Errno 13] Permission denied: '@test'
======================================================================
ERROR: test_close_open_seek (test.test_file.FileThreadingTests)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_file.py", line 354, in setUp
with open(self.filename, "w") as f:
IOError: [Errno 13] Permission denied: '@test'
======================================================================
ERROR: test_close_open_tell (test.test_file.FileThreadingTests)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_file.py", line 354, in setUp
with open(self.filename, "w") as f:
IOError: [Errno 13] Permission denied: '@test'
======================================================================
ERROR: test_close_open_truncate (test.test_file.FileThreadingTests)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_file.py", line 354, in setUp
with open(self.filename, "w") as f:
IOError: [Errno 13] Permission denied: '@test'
======================================================================
ERROR: test_close_open_write (test.test_file.FileThreadingTests)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_file.py", line 354, in setUp
with open(self.filename, "w") as f:
IOError: [Errno 13] Permission denied: '@test'
======================================================================
ERROR: test_close_open_writelines (test.test_file.FileThreadingTests)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_file.py", line 354, in setUp
with open(self.filename, "w") as f:
IOError: [Errno 13] Permission denied: '@test'
======================================================================
FAIL: testSetBufferSize (test.test_file.OtherFileTests)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_file.py", line 184, in testSetBufferSize
self.fail('error setting buffer size %d: %s' % (s, str(msg)))
AssertionError: error setting buffer size -1: [Errno 13] Permission denied: '@test'
======================================================================
ERROR: test_close_flushes (test.test_io.IOTest)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_io.py", line 251, in test_close_flushes
f = io.open(test_support.TESTFN, "wb")
File "C:\buildbot\work\trunk.heller-windows\build\lib\io.py", line 223, in open
closefd)
IOError: [Errno 13] Permission denied
======================================================================
ERROR: test_destructor (test.test_io.IOTest)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_io.py", line 245, in test_destructor
f = MyFileIO(test_support.TESTFN, "w")
IOError: [Errno 13] Permission denied
======================================================================
ERROR: test_large_file_ops (test.test_io.IOTest)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_io.py", line 211, in test_large_file_ops
f = io.open(test_support.TESTFN, "w+b", 0)
File "C:\buildbot\work\trunk.heller-windows\build\lib\io.py", line 223, in open
closefd)
IOError: [Errno 13] Permission denied
======================================================================
ERROR: test_raw_file_io (test.test_io.IOTest)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_io.py", line 151, in test_raw_file_io
f = io.open(test_support.TESTFN, "wb", buffering=0)
File "C:\buildbot\work\trunk.heller-windows\build\lib\io.py", line 223, in open
closefd)
IOError: [Errno 13] Permission denied
======================================================================
ERROR: test_readline (test.test_io.IOTest)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_io.py", line 179, in test_readline
f = io.open(test_support.TESTFN, "wb")
File "C:\buildbot\work\trunk.heller-windows\build\lib\io.py", line 223, in open
closefd)
IOError: [Errno 13] Permission denied
======================================================================
ERROR: test_with_open (test.test_io.IOTest)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_io.py", line 221, in test_with_open
with open(test_support.TESTFN, "wb", bufsize) as f:
IOError: [Errno 13] Permission denied: '@test'
======================================================================
ERROR: testBasicIO (test.test_io.TextIOWrapperTest)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_io.py", line 818, in testBasicIO
f = io.open(test_support.TESTFN, "w+", encoding=enc)
File "C:\buildbot\work\trunk.heller-windows\build\lib\io.py", line 223, in open
closefd)
IOError: [Errno 13] Permission denied
======================================================================
ERROR: Test seek/tell using the StatefulIncrementalDecoder.
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_io.py", line 944, in testSeekAndTell
testSeekAndTellWithData(input)
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_io.py", line 924, in testSeekAndTellWithData
decoded = f.read()
File "C:\buildbot\work\trunk.heller-windows\build\lib\io.py", line 1616, in read
decoder = self._decoder or self._get_decoder()
File "C:\buildbot\work\trunk.heller-windows\build\lib\io.py", line 1413, in _get_decoder
decoder = make_decoder(self._errors)
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_io.py", line 523, in __init__
codecs.IncrementalDecoder.__init__(self, errors)
AttributeError: 'NoneType' object has no attribute 'IncrementalDecoder'
======================================================================
ERROR: test_rfind (test.test_mmap.MmapTests)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_mmap.py", line 280, in test_rfind
f = open(TESTFN, 'w+')
IOError: [Errno 13] Permission denied: '@test'
======================================================================
ERROR: test_tougher_find (test.test_mmap.MmapTests)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_mmap.py", line 244, in test_tougher_find
f = open(TESTFN, 'w+')
IOError: [Errno 13] Permission denied: '@test'
======================================================================
ERROR: test_print (test.test_set.TestBasicOpsSingleton)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_set.py", line 629, in test_print
fo = open(test_support.TESTFN, "wb")
IOError: [Errno 13] Permission denied: '@test'
======================================================================
ERROR: test_print (test.test_set.TestBasicOpsTuple)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_set.py", line 629, in test_print
fo = open(test_support.TESTFN, "wb")
IOError: [Errno 13] Permission denied: '@test'
======================================================================
ERROR: test_print (test.test_set.TestBasicOpsTriple)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_set.py", line 629, in test_print
fo = open(test_support.TESTFN, "wb")
IOError: [Errno 13] Permission denied: '@test'
======================================================================
FAIL: test_send_signal (test.test_subprocess.ProcessTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_subprocess.py", line 687, in test_send_signal
self.assertNotEqual(p.wait(), 0)
AssertionError: 0 == 0
======================================================================
ERROR: test_read (test.test_univnewlines.TestNativeNewlines)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_univnewlines.py", line 40, in setUp
fp = open(test_support.TESTFN, self.WRITEMODE)
IOError: [Errno 13] Permission denied: '@test'
======================================================================
ERROR: test_readline (test.test_univnewlines.TestNativeNewlines)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_univnewlines.py", line 40, in setUp
fp = open(test_support.TESTFN, self.WRITEMODE)
IOError: [Errno 13] Permission denied: '@test'
======================================================================
ERROR: test_readlines (test.test_univnewlines.TestNativeNewlines)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_univnewlines.py", line 40, in setUp
fp = open(test_support.TESTFN, self.WRITEMODE)
IOError: [Errno 13] Permission denied: '@test'
======================================================================
ERROR: test_seek (test.test_univnewlines.TestNativeNewlines)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_univnewlines.py", line 40, in setUp
fp = open(test_support.TESTFN, self.WRITEMODE)
IOError: [Errno 13] Permission denied: '@test'
======================================================================
ERROR: test_execfile (test.test_univnewlines.TestCRNewlines)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_univnewlines.py", line 40, in setUp
fp = open(test_support.TESTFN, self.WRITEMODE)
IOError: [Errno 13] Permission denied: '@test'
======================================================================
ERROR: test_read (test.test_univnewlines.TestCRNewlines)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_univnewlines.py", line 40, in setUp
fp = open(test_support.TESTFN, self.WRITEMODE)
IOError: [Errno 13] Permission denied: '@test'
======================================================================
ERROR: test_readline (test.test_univnewlines.TestCRNewlines)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_univnewlines.py", line 40, in setUp
fp = open(test_support.TESTFN, self.WRITEMODE)
IOError: [Errno 13] Permission denied: '@test'
======================================================================
ERROR: test_readlines (test.test_univnewlines.TestCRNewlines)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_univnewlines.py", line 40, in setUp
fp = open(test_support.TESTFN, self.WRITEMODE)
IOError: [Errno 13] Permission denied: '@test'
======================================================================
ERROR: test_seek (test.test_univnewlines.TestCRNewlines)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_univnewlines.py", line 40, in setUp
fp = open(test_support.TESTFN, self.WRITEMODE)
IOError: [Errno 13] Permission denied: '@test'
======================================================================
ERROR: test_execfile (test.test_univnewlines.TestLFNewlines)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_univnewlines.py", line 40, in setUp
fp = open(test_support.TESTFN, self.WRITEMODE)
IOError: [Errno 13] Permission denied: '@test'
======================================================================
ERROR: test_read (test.test_univnewlines.TestLFNewlines)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_univnewlines.py", line 40, in setUp
fp = open(test_support.TESTFN, self.WRITEMODE)
IOError: [Errno 13] Permission denied: '@test'
======================================================================
ERROR: test_readline (test.test_univnewlines.TestLFNewlines)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_univnewlines.py", line 40, in setUp
fp = open(test_support.TESTFN, self.WRITEMODE)
IOError: [Errno 13] Permission denied: '@test'
======================================================================
ERROR: test_readlines (test.test_univnewlines.TestLFNewlines)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_univnewlines.py", line 40, in setUp
fp = open(test_support.TESTFN, self.WRITEMODE)
IOError: [Errno 13] Permission denied: '@test'
======================================================================
ERROR: test_seek (test.test_univnewlines.TestLFNewlines)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_univnewlines.py", line 40, in setUp
fp = open(test_support.TESTFN, self.WRITEMODE)
IOError: [Errno 13] Permission denied: '@test'
======================================================================
ERROR: test_execfile (test.test_univnewlines.TestCRLFNewlines)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_univnewlines.py", line 40, in setUp
fp = open(test_support.TESTFN, self.WRITEMODE)
IOError: [Errno 13] Permission denied: '@test'
======================================================================
ERROR: test_read (test.test_univnewlines.TestCRLFNewlines)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_univnewlines.py", line 40, in setUp
fp = open(test_support.TESTFN, self.WRITEMODE)
IOError: [Errno 13] Permission denied: '@test'
======================================================================
ERROR: test_readline (test.test_univnewlines.TestCRLFNewlines)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_univnewlines.py", line 40, in setUp
fp = open(test_support.TESTFN, self.WRITEMODE)
IOError: [Errno 13] Permission denied: '@test'
======================================================================
ERROR: test_readlines (test.test_univnewlines.TestCRLFNewlines)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_univnewlines.py", line 40, in setUp
fp = open(test_support.TESTFN, self.WRITEMODE)
IOError: [Errno 13] Permission denied: '@test'
======================================================================
ERROR: test_seek (test.test_univnewlines.TestCRLFNewlines)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_univnewlines.py", line 40, in setUp
fp = open(test_support.TESTFN, self.WRITEMODE)
IOError: [Errno 13] Permission denied: '@test'
======================================================================
ERROR: test_tell (test.test_univnewlines.TestCRLFNewlines)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_univnewlines.py", line 40, in setUp
fp = open(test_support.TESTFN, self.WRITEMODE)
IOError: [Errno 13] Permission denied: '@test'
======================================================================
ERROR: test_execfile (test.test_univnewlines.TestMixedNewlines)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_univnewlines.py", line 40, in setUp
fp = open(test_support.TESTFN, self.WRITEMODE)
IOError: [Errno 13] Permission denied: '@test'
======================================================================
ERROR: test_read (test.test_univnewlines.TestMixedNewlines)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_univnewlines.py", line 40, in setUp
fp = open(test_support.TESTFN, self.WRITEMODE)
IOError: [Errno 13] Permission denied: '@test'
======================================================================
ERROR: test_readline (test.test_univnewlines.TestMixedNewlines)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_univnewlines.py", line 40, in setUp
fp = open(test_support.TESTFN, self.WRITEMODE)
IOError: [Errno 13] Permission denied: '@test'
======================================================================
ERROR: test_readlines (test.test_univnewlines.TestMixedNewlines)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_univnewlines.py", line 40, in setUp
fp = open(test_support.TESTFN, self.WRITEMODE)
IOError: [Errno 13] Permission denied: '@test'
======================================================================
ERROR: test_seek (test.test_univnewlines.TestMixedNewlines)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_univnewlines.py", line 40, in setUp
fp = open(test_support.TESTFN, self.WRITEMODE)
IOError: [Errno 13] Permission denied: '@test'
======================================================================
ERROR: test_getcode (test.test_urllib.urlopen_FileTests)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_urllib.py", line 30, in setUp
FILE = file(test_support.TESTFN, 'wb')
IOError: [Errno 13] Permission denied: '@test'
======================================================================
ERROR: test_geturl (test.test_urllib.urlopen_FileTests)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_urllib.py", line 30, in setUp
FILE = file(test_support.TESTFN, 'wb')
IOError: [Errno 13] Permission denied: '@test'
======================================================================
ERROR: test_info (test.test_urllib.urlopen_FileTests)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_urllib.py", line 30, in setUp
FILE = file(test_support.TESTFN, 'wb')
IOError: [Errno 13] Permission denied: '@test'
======================================================================
ERROR: test_interface (test.test_urllib.urlopen_FileTests)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_urllib.py", line 30, in setUp
FILE = file(test_support.TESTFN, 'wb')
IOError: [Errno 13] Permission denied: '@test'
======================================================================
ERROR: test_iter (test.test_urllib.urlopen_FileTests)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_urllib.py", line 30, in setUp
FILE = file(test_support.TESTFN, 'wb')
IOError: [Errno 13] Permission denied: '@test'
======================================================================
ERROR: test_read (test.test_urllib.urlopen_FileTests)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_urllib.py", line 30, in setUp
FILE = file(test_support.TESTFN, 'wb')
IOError: [Errno 13] Permission denied: '@test'
======================================================================
ERROR: test_readline (test.test_urllib.urlopen_FileTests)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_urllib.py", line 30, in setUp
FILE = file(test_support.TESTFN, 'wb')
IOError: [Errno 13] Permission denied: '@test'
======================================================================
ERROR: test_readlines (test.test_urllib.urlopen_FileTests)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_urllib.py", line 30, in setUp
FILE = file(test_support.TESTFN, 'wb')
IOError: [Errno 13] Permission denied: '@test'
======================================================================
ERROR: test_basic (test.test_urllib.urlretrieve_FileTests)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_urllib.py", line 169, in setUp
FILE = file(test_support.TESTFN, 'wb')
IOError: [Errno 13] Permission denied: '@test'
======================================================================
ERROR: test_copy (test.test_urllib.urlretrieve_FileTests)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_urllib.py", line 169, in setUp
FILE = file(test_support.TESTFN, 'wb')
IOError: [Errno 13] Permission denied: '@test'
======================================================================
ERROR: test_reporthook (test.test_urllib.urlretrieve_FileTests)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_urllib.py", line 169, in setUp
FILE = file(test_support.TESTFN, 'wb')
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\trunk.heller-windows\build\lib\test\test_urllib.py", line 169, in setUp
FILE = file(test_support.TESTFN, 'wb')
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\trunk.heller-windows\build\lib\test\test_urllib.py", line 169, in setUp
FILE = file(test_support.TESTFN, 'wb')
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\trunk.heller-windows\build\lib\test\test_urllib.py", line 169, in setUp
FILE = file(test_support.TESTFN, 'wb')
IOError: [Errno 13] Permission denied: '@test'
======================================================================
ERROR: test_file (test.test_urllib2.HandlerTests)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_urllib2.py", line 612, in test_file
f = open(TESTFN, "wb")
IOError: [Errno 13] Permission denied: '@test'
======================================================================
ERROR: test_whichdb_dbhash (test.test_whichdb.WhichDBTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_whichdb.py", line 48, in test_whichdb_name
f = mod.open(_fname, 'c')
File "C:\buildbot\work\trunk.heller-windows\build\lib\dbhash.py", line 16, in open
return bsddb.hashopen(file, flag, mode)
File "C:\buildbot\work\trunk.heller-windows\build\lib\bsddb\__init__.py", line 310, in hashopen
d.open(file, db.DB_HASH, flags, mode)
DBFileExistsError: (17, 'File exists -- __fop_file_setup: Retry limit (100) exceeded')
======================================================================
ERROR: testCloseErroneousFile (test.test_zipfile.OtherTests)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_zipfile.py", line 583, in testCloseErroneousFile
fp = open(TESTFN, "w")
IOError: [Errno 13] Permission denied: '@test'
======================================================================
ERROR: testGoodPassword (test.test_zipfile.DecryptionTests)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_zipfile.py", line 716, in setUp
fp = open(TESTFN, "wb")
IOError: [Errno 13] Permission denied: '@test'
======================================================================
ERROR: testNoPassword (test.test_zipfile.DecryptionTests)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_zipfile.py", line 716, in setUp
fp = open(TESTFN, "wb")
IOError: [Errno 13] Permission denied: '@test'
======================================================================
ERROR: testBadMagic (test.test_zipimport.UncompressedZipImportTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_zipimport.py", line 161, in testBadMagic
self.doTest(".py", files, TESTMOD)
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_zipimport.py", line 68, in doTest
z = ZipFile(TEMP_ZIP, "w")
File "C:\buildbot\work\trunk.heller-windows\build\lib\zipfile.py", line 602, in __init__
self.fp = open(file, modeDict[mode])
IOError: [Errno 13] Permission denied: 'C:\\buildbot\\work\\trunk.heller-windows\\build\\PCbuild\\junk95142.zip'
======================================================================
ERROR: testEmptyPy (test.test_zipimport.UncompressedZipImportTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_zipimport.py", line 152, in testEmptyPy
self.doTest(None, files, TESTMOD)
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_zipimport.py", line 68, in doTest
z = ZipFile(TEMP_ZIP, "w")
File "C:\buildbot\work\trunk.heller-windows\build\lib\zipfile.py", line 602, in __init__
self.fp = open(file, modeDict[mode])
IOError: [Errno 13] Permission denied: 'C:\\buildbot\\work\\trunk.heller-windows\\build\\PCbuild\\junk95142.zip'
======================================================================
ERROR: testGetCompiledSource (test.test_zipimport.UncompressedZipImportTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_zipimport.py", line 279, in testGetCompiledSource
self.doTest(pyc_ext, files, TESTMOD, call=self.assertModuleSource)
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_zipimport.py", line 68, in doTest
z = ZipFile(TEMP_ZIP, "w")
File "C:\buildbot\work\trunk.heller-windows\build\lib\zipfile.py", line 602, in __init__
self.fp = open(file, modeDict[mode])
IOError: [Errno 13] Permission denied: 'C:\\buildbot\\work\\trunk.heller-windows\\build\\PCbuild\\junk95142.zip'
======================================================================
ERROR: testGetData (test.test_zipimport.UncompressedZipImportTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_zipimport.py", line 236, in testGetData
z = ZipFile(TEMP_ZIP, "w")
File "C:\buildbot\work\trunk.heller-windows\build\lib\zipfile.py", line 602, in __init__
self.fp = open(file, modeDict[mode])
IOError: [Errno 13] Permission denied: 'C:\\buildbot\\work\\trunk.heller-windows\\build\\PCbuild\\junk95142.zip'
======================================================================
ERROR: testGetSource (test.test_zipimport.UncompressedZipImportTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_zipimport.py", line 273, in testGetSource
self.doTest(".py", files, TESTMOD, call=self.assertModuleSource)
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_zipimport.py", line 68, in doTest
z = ZipFile(TEMP_ZIP, "w")
File "C:\buildbot\work\trunk.heller-windows\build\lib\zipfile.py", line 602, in __init__
self.fp = open(file, modeDict[mode])
IOError: [Errno 13] Permission denied: 'C:\\buildbot\\work\\trunk.heller-windows\\build\\PCbuild\\junk95142.zip'
======================================================================
ERROR: testImport_WithStuff (test.test_zipimport.UncompressedZipImportTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_zipimport.py", line 266, in testImport_WithStuff
stuff="Some Stuff"*31)
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_zipimport.py", line 68, in doTest
z = ZipFile(TEMP_ZIP, "w")
File "C:\buildbot\work\trunk.heller-windows\build\lib\zipfile.py", line 602, in __init__
self.fp = open(file, modeDict[mode])
IOError: [Errno 13] Permission denied: 'C:\\buildbot\\work\\trunk.heller-windows\\build\\PCbuild\\junk95142.zip'
======================================================================
ERROR: testImporterAttr (test.test_zipimport.UncompressedZipImportTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_zipimport.py", line 259, in testImporterAttr
self.doTest(pyc_ext, files, TESTMOD)
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_zipimport.py", line 68, in doTest
z = ZipFile(TEMP_ZIP, "w")
File "C:\buildbot\work\trunk.heller-windows\build\lib\zipfile.py", line 602, in __init__
self.fp = open(file, modeDict[mode])
IOError: [Errno 13] Permission denied: 'C:\\buildbot\\work\\trunk.heller-windows\\build\\PCbuild\\junk95142.zip'
======================================================================
ERROR: testPackage (test.test_zipimport.UncompressedZipImportTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_zipimport.py", line 189, in testPackage
self.doTest(pyc_ext, files, TESTPACK, TESTMOD)
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_zipimport.py", line 68, in doTest
z = ZipFile(TEMP_ZIP, "w")
File "C:\buildbot\work\trunk.heller-windows\build\lib\zipfile.py", line 602, in __init__
self.fp = open(file, modeDict[mode])
IOError: [Errno 13] Permission denied: 'C:\\buildbot\\work\\trunk.heller-windows\\build\\PCbuild\\junk95142.zip'
======================================================================
ERROR: testPy (test.test_zipimport.UncompressedZipImportTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_zipimport.py", line 139, in testPy
self.doTest(".py", files, TESTMOD)
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_zipimport.py", line 68, in doTest
z = ZipFile(TEMP_ZIP, "w")
File "C:\buildbot\work\trunk.heller-windows\build\lib\zipfile.py", line 602, in __init__
self.fp = open(file, modeDict[mode])
IOError: [Errno 13] Permission denied: 'C:\\buildbot\\work\\trunk.heller-windows\\build\\PCbuild\\junk95142.zip'
======================================================================
ERROR: testPyc (test.test_zipimport.UncompressedZipImportTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_zipimport.py", line 143, in testPyc
self.doTest(pyc_ext, files, TESTMOD)
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_zipimport.py", line 68, in doTest
z = ZipFile(TEMP_ZIP, "w")
File "C:\buildbot\work\trunk.heller-windows\build\lib\zipfile.py", line 602, in __init__
self.fp = open(file, modeDict[mode])
IOError: [Errno 13] Permission denied: 'C:\\buildbot\\work\\trunk.heller-windows\\build\\PCbuild\\junk95142.zip'
======================================================================
ERROR: testTraceback (test.test_zipimport.UncompressedZipImportTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_zipimport.py", line 333, in testTraceback
self.doTest(None, files, TESTMOD, call=self.doTraceback)
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_zipimport.py", line 68, in doTest
z = ZipFile(TEMP_ZIP, "w")
File "C:\buildbot\work\trunk.heller-windows\build\lib\zipfile.py", line 602, in __init__
self.fp = open(file, modeDict[mode])
IOError: [Errno 13] Permission denied: 'C:\\buildbot\\work\\trunk.heller-windows\\build\\PCbuild\\junk95142.zip'
======================================================================
ERROR: testZipImporterMethods (test.test_zipimport.UncompressedZipImportTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_zipimport.py", line 206, in testZipImporterMethods
z = ZipFile(TEMP_ZIP, "w")
File "C:\buildbot\work\trunk.heller-windows\build\lib\zipfile.py", line 602, in __init__
self.fp = open(file, modeDict[mode])
IOError: [Errno 13] Permission denied: 'C:\\buildbot\\work\\trunk.heller-windows\\build\\PCbuild\\junk95142.zip'
======================================================================
ERROR: testBadMTime (test.test_zipimport.CompressedZipImportTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_zipimport.py", line 183, in testBadMTime
self.doTest(".py", files, TESTMOD)
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_zipimport.py", line 68, in doTest
z = ZipFile(TEMP_ZIP, "w")
File "C:\buildbot\work\trunk.heller-windows\build\lib\zipfile.py", line 602, in __init__
self.fp = open(file, modeDict[mode])
IOError: [Errno 13] Permission denied: 'C:\\buildbot\\work\\trunk.heller-windows\\build\\PCbuild\\junk95142.zip'
======================================================================
ERROR: testBadMagic (test.test_zipimport.CompressedZipImportTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_zipimport.py", line 161, in testBadMagic
self.doTest(".py", files, TESTMOD)
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_zipimport.py", line 68, in doTest
z = ZipFile(TEMP_ZIP, "w")
File "C:\buildbot\work\trunk.heller-windows\build\lib\zipfile.py", line 602, in __init__
self.fp = open(file, modeDict[mode])
IOError: [Errno 13] Permission denied: 'C:\\buildbot\\work\\trunk.heller-windows\\build\\PCbuild\\junk95142.zip'
======================================================================
ERROR: testBadMagic2 (test.test_zipimport.CompressedZipImportTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_zipimport.py", line 170, in testBadMagic2
self.doTest(".py", files, TESTMOD)
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_zipimport.py", line 68, in doTest
z = ZipFile(TEMP_ZIP, "w")
File "C:\buildbot\work\trunk.heller-windows\build\lib\zipfile.py", line 602, in __init__
self.fp = open(file, modeDict[mode])
IOError: [Errno 13] Permission denied: 'C:\\buildbot\\work\\trunk.heller-windows\\build\\PCbuild\\junk95142.zip'
======================================================================
ERROR: testBoth (test.test_zipimport.CompressedZipImportTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_zipimport.py", line 148, in testBoth
self.doTest(pyc_ext, files, TESTMOD)
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_zipimport.py", line 68, in doTest
z = ZipFile(TEMP_ZIP, "w")
File "C:\buildbot\work\trunk.heller-windows\build\lib\zipfile.py", line 602, in __init__
self.fp = open(file, modeDict[mode])
IOError: [Errno 13] Permission denied: 'C:\\buildbot\\work\\trunk.heller-windows\\build\\PCbuild\\junk95142.zip'
======================================================================
ERROR: testDeepPackage (test.test_zipimport.CompressedZipImportTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_zipimport.py", line 197, in testDeepPackage
self.doTest(pyc_ext, files, TESTPACK, TESTPACK2, TESTMOD)
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_zipimport.py", line 68, in doTest
z = ZipFile(TEMP_ZIP, "w")
File "C:\buildbot\work\trunk.heller-windows\build\lib\zipfile.py", line 602, in __init__
self.fp = open(file, modeDict[mode])
IOError: [Errno 13] Permission denied: 'C:\\buildbot\\work\\trunk.heller-windows\\build\\PCbuild\\junk95142.zip'
======================================================================
ERROR: testDoctestFile (test.test_zipimport.CompressedZipImportTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_zipimport.py", line 299, in testDoctestFile
self.runDoctest(self.doDoctestFile)
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_zipimport.py", line 284, in runDoctest
self.doTest(".py", files, TESTMOD, call=callback)
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_zipimport.py", line 68, in doTest
z = ZipFile(TEMP_ZIP, "w")
File "C:\buildbot\work\trunk.heller-windows\build\lib\zipfile.py", line 602, in __init__
self.fp = open(file, modeDict[mode])
IOError: [Errno 13] Permission denied: 'C:\\buildbot\\work\\trunk.heller-windows\\build\\PCbuild\\junk95142.zip'
======================================================================
ERROR: testDoctestSuite (test.test_zipimport.CompressedZipImportTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_zipimport.py", line 310, in testDoctestSuite
self.runDoctest(self.doDoctestSuite)
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_zipimport.py", line 284, in runDoctest
self.doTest(".py", files, TESTMOD, call=callback)
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_zipimport.py", line 68, in doTest
z = ZipFile(TEMP_ZIP, "w")
File "C:\buildbot\work\trunk.heller-windows\build\lib\zipfile.py", line 602, in __init__
self.fp = open(file, modeDict[mode])
IOError: [Errno 13] Permission denied: 'C:\\buildbot\\work\\trunk.heller-windows\\build\\PCbuild\\junk95142.zip'
======================================================================
ERROR: testEmptyPy (test.test_zipimport.CompressedZipImportTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_zipimport.py", line 152, in testEmptyPy
self.doTest(None, files, TESTMOD)
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_zipimport.py", line 68, in doTest
z = ZipFile(TEMP_ZIP, "w")
File "C:\buildbot\work\trunk.heller-windows\build\lib\zipfile.py", line 602, in __init__
self.fp = open(file, modeDict[mode])
IOError: [Errno 13] Permission denied: 'C:\\buildbot\\work\\trunk.heller-windows\\build\\PCbuild\\junk95142.zip'
======================================================================
ERROR: testGetCompiledSource (test.test_zipimport.CompressedZipImportTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_zipimport.py", line 279, in testGetCompiledSource
self.doTest(pyc_ext, files, TESTMOD, call=self.assertModuleSource)
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_zipimport.py", line 68, in doTest
z = ZipFile(TEMP_ZIP, "w")
File "C:\buildbot\work\trunk.heller-windows\build\lib\zipfile.py", line 602, in __init__
self.fp = open(file, modeDict[mode])
IOError: [Errno 13] Permission denied: 'C:\\buildbot\\work\\trunk.heller-windows\\build\\PCbuild\\junk95142.zip'
======================================================================
ERROR: testGetData (test.test_zipimport.CompressedZipImportTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_zipimport.py", line 236, in testGetData
z = ZipFile(TEMP_ZIP, "w")
File "C:\buildbot\work\trunk.heller-windows\build\lib\zipfile.py", line 602, in __init__
self.fp = open(file, modeDict[mode])
IOError: [Errno 13] Permission denied: 'C:\\buildbot\\work\\trunk.heller-windows\\build\\PCbuild\\junk95142.zip'
======================================================================
ERROR: testGetSource (test.test_zipimport.CompressedZipImportTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_zipimport.py", line 273, in testGetSource
self.doTest(".py", files, TESTMOD, call=self.assertModuleSource)
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_zipimport.py", line 68, in doTest
z = ZipFile(TEMP_ZIP, "w")
File "C:\buildbot\work\trunk.heller-windows\build\lib\zipfile.py", line 602, in __init__
self.fp = open(file, modeDict[mode])
IOError: [Errno 13] Permission denied: 'C:\\buildbot\\work\\trunk.heller-windows\\build\\PCbuild\\junk95142.zip'
======================================================================
ERROR: testImport_WithStuff (test.test_zipimport.CompressedZipImportTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_zipimport.py", line 266, in testImport_WithStuff
stuff="Some Stuff"*31)
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_zipimport.py", line 68, in doTest
z = ZipFile(TEMP_ZIP, "w")
File "C:\buildbot\work\trunk.heller-windows\build\lib\zipfile.py", line 602, in __init__
self.fp = open(file, modeDict[mode])
IOError: [Errno 13] Permission denied: 'C:\\buildbot\\work\\trunk.heller-windows\\build\\PCbuild\\junk95142.zip'
======================================================================
ERROR: testImporterAttr (test.test_zipimport.CompressedZipImportTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_zipimport.py", line 259, in testImporterAttr
self.doTest(pyc_ext, files, TESTMOD)
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_zipimport.py", line 68, in doTest
z = ZipFile(TEMP_ZIP, "w")
File "C:\buildbot\work\trunk.heller-windows\build\lib\zipfile.py", line 602, in __init__
self.fp = open(file, modeDict[mode])
IOError: [Errno 13] Permission denied: 'C:\\buildbot\\work\\trunk.heller-windows\\build\\PCbuild\\junk95142.zip'
======================================================================
ERROR: testPackage (test.test_zipimport.CompressedZipImportTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_zipimport.py", line 189, in testPackage
self.doTest(pyc_ext, files, TESTPACK, TESTMOD)
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_zipimport.py", line 68, in doTest
z = ZipFile(TEMP_ZIP, "w")
File "C:\buildbot\work\trunk.heller-windows\build\lib\zipfile.py", line 602, in __init__
self.fp = open(file, modeDict[mode])
IOError: [Errno 13] Permission denied: 'C:\\buildbot\\work\\trunk.heller-windows\\build\\PCbuild\\junk95142.zip'
======================================================================
ERROR: testPy (test.test_zipimport.CompressedZipImportTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_zipimport.py", line 139, in testPy
self.doTest(".py", files, TESTMOD)
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_zipimport.py", line 68, in doTest
z = ZipFile(TEMP_ZIP, "w")
File "C:\buildbot\work\trunk.heller-windows\build\lib\zipfile.py", line 602, in __init__
self.fp = open(file, modeDict[mode])
IOError: [Errno 13] Permission denied: 'C:\\buildbot\\work\\trunk.heller-windows\\build\\PCbuild\\junk95142.zip'
======================================================================
ERROR: testPyc (test.test_zipimport.CompressedZipImportTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_zipimport.py", line 143, in testPyc
self.doTest(pyc_ext, files, TESTMOD)
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_zipimport.py", line 68, in doTest
z = ZipFile(TEMP_ZIP, "w")
File "C:\buildbot\work\trunk.heller-windows\build\lib\zipfile.py", line 602, in __init__
self.fp = open(file, modeDict[mode])
IOError: [Errno 13] Permission denied: 'C:\\buildbot\\work\\trunk.heller-windows\\build\\PCbuild\\junk95142.zip'
======================================================================
ERROR: testTraceback (test.test_zipimport.CompressedZipImportTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_zipimport.py", line 333, in testTraceback
self.doTest(None, files, TESTMOD, call=self.doTraceback)
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_zipimport.py", line 68, in doTest
z = ZipFile(TEMP_ZIP, "w")
File "C:\buildbot\work\trunk.heller-windows\build\lib\zipfile.py", line 602, in __init__
self.fp = open(file, modeDict[mode])
IOError: [Errno 13] Permission denied: 'C:\\buildbot\\work\\trunk.heller-windows\\build\\PCbuild\\junk95142.zip'
======================================================================
ERROR: testZipImporterMethods (test.test_zipimport.CompressedZipImportTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot\work\trunk.heller-windows\build\lib\test\test_zipimport.py", line 206, in testZipImporterMethods
z = ZipFile(TEMP_ZIP, "w")
File "C:\buildbot\work\trunk.heller-windows\build\lib\zipfile.py", line 602, in __init__
self.fp = open(file, modeDict[mode])
IOError: [Errno 13] Permission denied: 'C:\\buildbot\\work\\trunk.heller-windows\\build\\PCbuild\\junk95142.zip'
sincerely,
-The Buildbot
1
0
The Buildbot has detected a new failure of amd64 XP 3.0.
Full details are available at:
http://www.python.org/dev/buildbot/all/amd64%20XP%203.0/builds/813
Buildbot URL: http://www.python.org/dev/buildbot/all/
Buildslave for this Build: heller-windows-amd64
Build Reason:
Build Source Stamp: [branch branches/py3k] HEAD
Blamelist: mark.dickinson
BUILD FAILED: failed compile
sincerely,
-The Buildbot
1
0
The Buildbot has detected a new failure of alpha Tru64 5.1 3.0.
Full details are available at:
http://www.python.org/dev/buildbot/all/alpha%20Tru64%205.1%203.0/builds/867
Buildbot URL: http://www.python.org/dev/buildbot/all/
Buildslave for this Build: norwitz-tru64
Build Reason:
Build Source Stamp: [branch branches/py3k] HEAD
Blamelist: mark.dickinson
BUILD FAILED: failed test
Excerpt from the test logfile:
sincerely,
-The Buildbot
1
0
The Buildbot has detected a new failure of alpha Tru64 5.1 trunk.
Full details are available at:
http://www.python.org/dev/buildbot/all/alpha%20Tru64%205.1%20trunk/builds/2…
Buildbot URL: http://www.python.org/dev/buildbot/all/
Buildslave for this Build: norwitz-tru64
Build Reason:
Build Source Stamp: [branch trunk] HEAD
Blamelist: benjamin.peterson,georg.brandl
BUILD FAILED: failed test
Excerpt from the test logfile:
2 tests failed:
test_asynchat test_smtplib
sincerely,
-The Buildbot
1
0