From 92b44517cb8ef58ed02be9784bb329341589dd4d Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Mon, 3 May 1999 18:04:07 +0000 Subject: [PATCH] Clarify why there are dynamic imports in AudioDev(). This will enlighten Andrew Dalke; I don't know about kjpylint. :-) --- Lib/audiodev.py | 1 + 1 file changed, 1 insertion(+) diff --git a/Lib/audiodev.py b/Lib/audiodev.py index c76a5022d8b..83bd6ef6705 100644 --- a/Lib/audiodev.py +++ b/Lib/audiodev.py @@ -209,6 +209,7 @@ def getfillable(self): return BUFFERSIZE - self.getfilled() def AudioDev(): + # Dynamically try to import and use a platform specific module. try: import al except ImportError: