Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
7a5dc755
Commit
7a5dc755
authored
Aug 17, 2008
by
Antoine Pitrou
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
#3567: fix sunau for running with -bb and make test_ossaudiodev work.
parent
47d305d6
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
9 deletions
+8
-9
Lib/sunau.py
Lib/sunau.py
+5
-6
Lib/test/test_ossaudiodev.py
Lib/test/test_ossaudiodev.py
+3
-3
No files found.
Lib/sunau.py
View file @
7a5dc755
...
...
@@ -135,7 +135,7 @@ def _read_u32(file):
x
=
0
for
i
in
range
(
4
):
byte
=
file
.
read
(
1
)
if
byte
==
''
:
if
not
byte
:
raise
EOFError
x
=
x
*
256
+
ord
(
byte
)
return
x
...
...
@@ -144,10 +144,9 @@ def _write_u32(file, x):
data
=
[]
for
i
in
range
(
4
):
d
,
m
=
divmod
(
x
,
256
)
data
.
insert
(
0
,
m
)
data
.
insert
(
0
,
int
(
m
)
)
x
=
d
for
i
in
range
(
4
):
file
.
write
(
chr
(
int
(
data
[
i
])))
file
.
write
(
bytes
(
data
))
class
Au_read
:
...
...
@@ -198,7 +197,7 @@ class Au_read:
if
self
.
_hdr_size
>
24
:
self
.
_info
=
file
.
read
(
self
.
_hdr_size
-
24
)
for
i
in
range
(
len
(
self
.
_info
)):
if
self
.
_info
[
i
]
==
'
\
0
'
:
if
self
.
_info
[
i
]
==
b
'
\
0
'
:
self
.
_info
=
self
.
_info
[:
i
]
break
else
:
...
...
@@ -451,7 +450,7 @@ class Au_write:
_write_u32
(
self
.
_file
,
self
.
_framerate
)
_write_u32
(
self
.
_file
,
self
.
_nchannels
)
self
.
_file
.
write
(
self
.
_info
)
self
.
_file
.
write
(
'
\
0
'
*
(
header_size
-
len
(
self
.
_info
)
-
24
))
self
.
_file
.
write
(
b
'
\
0
'
*
(
header_size
-
len
(
self
.
_info
)
-
24
))
def
_patchheader
(
self
):
self
.
_file
.
seek
(
8
)
...
...
Lib/test/test_ossaudiodev.py
View file @
7a5dc755
...
...
@@ -57,7 +57,7 @@ class OSSAudioDevTests(unittest.TestCase):
dsp
.
fileno
()
# Make sure the read-only attributes work.
self
.
fail
Unless
(
dsp
.
close
)
self
.
fail
If
(
dsp
.
closed
)
self
.
assertEqual
(
dsp
.
name
,
"/dev/dsp"
)
self
.
assertEqual
(
dsp
.
mode
,
"w"
,
"bad dsp.mode: %r"
%
dsp
.
mode
)
...
...
@@ -65,7 +65,7 @@ class OSSAudioDevTests(unittest.TestCase):
for
attr
in
(
'closed'
,
'name'
,
'mode'
):
try
:
setattr
(
dsp
,
attr
,
42
)
except
TypeError
:
except
(
TypeError
,
AttributeError
)
:
pass
else
:
self
.
fail
(
"dsp.%s not read-only"
%
attr
)
...
...
@@ -75,7 +75,7 @@ class OSSAudioDevTests(unittest.TestCase):
# set parameters based on .au file headers
dsp
.
setparameters
(
AFMT_S16_NE
,
nchannels
,
rate
)
self
.
assert
Equals
(
"%.2f"
%
expected_time
,
"2.93"
)
self
.
assert
True
(
abs
(
expected_time
-
2.94
)
<
1e-2
,
expected_time
)
t1
=
time
.
time
()
dsp
.
write
(
data
)
dsp
.
close
()
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment