mirror of https://github.com/python/cpython
Added optional second arg to what(), giving the data read from the file
(then f may be None).
This commit is contained in:
parent
56a733856e
commit
81749b0754
|
@ -5,13 +5,19 @@
|
|||
# Recognize sound headers #
|
||||
#-------------------------#
|
||||
|
||||
def what(filename):
|
||||
f = open(filename, 'r')
|
||||
h = f.read(32)
|
||||
for tf in tests:
|
||||
res = tf(h, f)
|
||||
if res:
|
||||
return res
|
||||
def what(filename, h=None):
|
||||
if not h:
|
||||
f = open(filename, 'r')
|
||||
h = f.read(32)
|
||||
else:
|
||||
f = None
|
||||
try:
|
||||
for tf in tests:
|
||||
res = tf(h, f)
|
||||
if res:
|
||||
return res
|
||||
finally:
|
||||
if f: f.close()
|
||||
return None
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue