diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 2001-02-09 15:56:19 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 2001-02-09 15:56:19 (GMT) |
commit | def0d8da5a75dddad61071de93ee72e5d4d57a7b (patch) | |
tree | 57e0c96dd5c8b0bb1c7649c6d2a503ba389fca44 /Mac/Lib | |
parent | cd90c20b6268415ac136b927df627c8fccafbc97 (diff) | |
download | cpython-def0d8da5a75dddad61071de93ee72e5d4d57a7b.zip cpython-def0d8da5a75dddad61071de93ee72e5d4d57a7b.tar.gz cpython-def0d8da5a75dddad61071de93ee72e5d4d57a7b.tar.bz2 |
Get rid of from ... import *
Diffstat (limited to 'Mac/Lib')
-rw-r--r-- | Mac/Lib/Audio_mac.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Mac/Lib/Audio_mac.py b/Mac/Lib/Audio_mac.py index d59119d..14f825e 100644 --- a/Mac/Lib/Audio_mac.py +++ b/Mac/Lib/Audio_mac.py @@ -40,7 +40,7 @@ class Play_Audio_mac: def writeframes(self, data): import time - from Sound import * + from Sound import bufferCmd, callBackCmd, extSH import struct import MacOS if not self._chan: |