This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author francismb
Recipients francismb
Date 2013-12-02.22:23:27
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1386023008.24.0.870175921634.issue19866@psf.upfronthosting.co.za>
In-reply-to
Content
I've just installed Cpython 2.7.6 32bit on Windows64, run the tests [1]
and some of them failed. Some of them seems related to audiodata not beeing installed.

.\python.exe Lib\test\regrtest.py -v
== CPython 2.7.6 (default, Nov 10 2013, 19:24:18) [MSC v.1500 32 bit (Intel)] 
== Windows-7-6.1.7601-SP1 little-endian 
== c:\users\brugue\appdata\local\temp\test_python_1388 
Testing with flags: sys.flags(debug=0, py3k_warning=0, division_warning=0,
division_new=0, inspect=0, interactive=0, optimize=0, dont_write_bytecode=0,
no_user_site=0, no_site=0, ignore_environment=0, tabcheck=0, verbose=0,
unicode=0, bytes_warning=0, hash_randomization=0) 
... 
test_aifc
...
======================================================================
ERROR: test_close (test.test_aifc.AifcPCM8Test)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "D:\programs\Python27\lib\test\audiotests.py", line 148, in test_close
    with open(self.sndfilepath, 'rb') as testfile:
IOError: [Errno 2] No such file or directory: 'audiodata\\pluck-pcm8.aiff'
...
and more...
FAILED (errors=30)
...
test_sunau
======================================================================
ERROR: test_close (test.test_sunau.SunauPCM8Test)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "D:\programs\Python27\lib\test\audiotests.py", line 148, in test_close
    with open(self.sndfilepath, 'rb') as testfile:
IOError: [Errno 2] No such file or directory: 'audiodata\\pluck-pcm8.au'
...
Exception AttributeError: "Au_read instance has no attribute '_file'" in <bound method Au_read.__del__ of <sunau.Au_read instance at 0x0A4F3738>> ignored
Exception AttributeError: "Au_read instance has no attribute '_file'" in <bound method Au_read.__del__ of <sunau.Au_read instance at 0x0A4F3738>> ignored
Exception AttributeError: "Au_read instance has no attribute '_file'" in <bound method Au_read.__del__ of <sunau.Au_read instance at 0x0A4F3AA8>> ignored
Exception AttributeError: "Au_read instance has no attribute '_file'" in <bound method Au_read.__del__ of <sunau.Au_read instance at 0x0A4F3C60>> ignored
Exception AttributeError: "Au_read instance has no attribute '_file'" in <bound method Au_read.__del__ of <sunau.Au_read instance at 0x0A4F3F58>> ignored
Exception AttributeError: "Au_read instance has no attribute '_file'" in <bound method Au_read.__del__ of <sunau.Au_read instance at 0x0A481B98>> ignored
Exception AttributeError: "Au_read instance has no attribute '_file'" in <bound method Au_read.__del__ of <sunau.Au_read instance at 0x0A481B98>> ignored
Exception AttributeError: "Au_read instance has no attribute '_file'" in <bound method Au_read.__del__ of <sunau.Au_read instance at 0x0A596CB0>> ignored
Exception AttributeError: "Au_read instance has no attribute '_file'" in <bound method Au_read.__del__ of <sunau.Au_read instance at 0x0A596FD0>> ignored
Exception AttributeError: "Au_read instance has no attribute '_file'" in <bound method Au_read.__del__ of <sunau.Au_read instance at 0x0A596918>> ignored
Exception AttributeError: "Au_read instance has no attribute '_file'" in <bound method Au_read.__del__ of <sunau.Au_read instance at 0x0A47F508>> ignored
Exception AttributeError: "Au_read instance has no attribute '_file'" in <bound method Au_read.__del__ of <sunau.Au_read instance at 0x0A596918>> ignored
Exception AttributeError: "Au_read instance has no attribute '_file'" in <bound method Au_read.__del__ of <sunau.Au_read instance at 0x0A47FFA8>> ignored
Exception AttributeError: "Au_read instance has no attribute '_file'" in <bound method Au_read.__del__ of <sunau.Au_read instance at 0x0A47F508>> ignored
Exception AttributeError: "Au_read instance has no attribute '_file'" in <bound method Au_read.__del__ of <sunau.Au_read instance at 0x0A47F288>> ignored
test test_sunau failed -- multiple errors occurred
...
and more ...
...
FAILED (errors=25)
...
test_wave
...
======================================================================
ERROR: test_close (test.test_wave.WavePCM8Test)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "D:\programs\Python27\lib\test\audiotests.py", line 148, in test_close
    with open(self.sndfilepath, 'rb') as testfile:
IOError: [Errno 2] No such file or directory: 'audiodata\\pluck-pcm8.wav'
...
FAILED (errors=20)
...
See attached files
History
Date User Action Args
2013-12-02 22:23:28francismbsetrecipients: + francismb
2013-12-02 22:23:28francismbsetmessageid: <1386023008.24.0.870175921634.issue19866@psf.upfronthosting.co.za>
2013-12-02 22:23:28francismblinkissue19866 messages
2013-12-02 22:23:27francismbcreate