mirror of
https://github.com/python/cpython.git
synced 2025-08-25 03:04:55 +00:00
Fix SF #1001053, wave.open() with unicode filename fails
Backport candidate.
This commit is contained in:
parent
4ecd8cd046
commit
0e67fd478f
2 changed files with 4 additions and 2 deletions
|
@ -155,7 +155,7 @@ class Wave_read:
|
|||
|
||||
def __init__(self, f):
|
||||
self._i_opened_the_file = None
|
||||
if type(f) == type(''):
|
||||
if isinstance(f, basestring):
|
||||
f = __builtin__.open(f, 'rb')
|
||||
self._i_opened_the_file = f
|
||||
# else, assume it is an open file object already
|
||||
|
@ -294,7 +294,7 @@ class Wave_write:
|
|||
|
||||
def __init__(self, f):
|
||||
self._i_opened_the_file = None
|
||||
if type(f) == type(''):
|
||||
if isinstance(f, basestring):
|
||||
f = __builtin__.open(f, 'wb')
|
||||
self._i_opened_the_file = f
|
||||
self.initfp(f)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue