Lines Matching refs:open
6 f = wave.open(file, 'r')
7 where file is either the name of a file or an open file pointer.
8 The open file pointer must have methods read(), seek(), and close().
39 f = wave.open(file, 'w')
40 where file is either the name of a file or an open file pointer.
41 The open file pointer must have methods write(), tell(), seek(), and
80 __all__ = ["open", "Error", "Wave_read", "Wave_write"]
219 _file -- the open file with methods read(), close(), and seek()
279 f = builtins.open(f, 'rb')
281 # else, assume it is an open file object already
401 _file -- the open file with methods write(), close(), tell(), seek()
425 f = builtins.open(f, 'wb')
624 def open(f, mode=None):