PATH:
usr
/
lib64
/
python2.7
"""Classes for manipulating audio devices (currently only for Sun and SGI)""" from warnings import warnpy3k warnpy3k("the audiodev module has been removed in Python 3.0", stacklevel=2) del warnpy3k __all__ = ["error","AudioDev"] class error(Exception): pass class Play_Audio_sgi: # Private instance variables ## if 0: access frameratelist, nchannelslist, sampwidthlist, oldparams, \ ## params, config, inited_outrate, inited_width, \ ## inited_nchannels, port, converter, classinited: private classinited = 0 frameratelist = nchannelslist = sampwidthlist = None def initclass(self): import AL self.frameratelist = [ (48000, AL.RATE_48000), (44100, AL.RATE_44100), (32000, AL.RATE_32000), (22050, AL.RATE_22050), (16000, AL.RATE_16000), (11025, AL.RATE_11025), ( 8000, AL.RATE_8000), ] self.nchannelslist = [ (1, AL.MONO), (2, AL.STEREO), (4, AL.QUADRO), ] self.sampwidthlist = [ (1, AL.SAMPLE_8), (2, AL.SAMPLE_16), (3, AL.SAMPLE_24), ] self.classinited = 1 def __init__(self): import al, AL if not self.classinited: self.initclass() self.oldparams = [] self.params = [AL.OUTPUT_RATE, 0] self.config = al.newconfig() self.inited_outrate = 0 self.inited_width = 0 self.inited_nchannels = 0 self.converter = None self.port = None return def __del__(self): if self.port: self.stop() if self.oldparams: import al, AL al.setparams(AL.DEFAULT_DEVICE, self.oldparams) self.oldparams = [] def wait(self): if not self.port: return import time while self.port.getfilled() > 0: time.sleep(0.1) self.stop() def stop(self): if self.port: self.port.closeport() self.port = None if self.oldparams: import al, AL al.setparams(AL.DEFAULT_DEVICE, self.oldparams) self.oldparams = [] def setoutrate(self, rate): for (raw, cooked) in self.frameratelist: if rate == raw: self.params[1] = cooked self.inited_outrate = 1 break else: raise error, 'bad output rate' def setsampwidth(self, width): for (raw, cooked) in self.sampwidthlist: if width == raw: self.config.setwidth(cooked) self.inited_width = 1 break else: if width == 0: import AL self.inited_width = 0 self.config.setwidth(AL.SAMPLE_16) self.converter = self.ulaw2lin else: raise error, 'bad sample width' def setnchannels(self, nchannels): for (raw, cooked) in self.nchannelslist: if nchannels == raw: self.config.setchannels(cooked) self.inited_nchannels = 1 break else: raise error, 'bad # of channels' def writeframes(self, data): if not (self.inited_outrate and self.inited_nchannels): raise error, 'params not specified' if not self.port: import al, AL self.port = al.openport('Python', 'w', self.config) self.oldparams = self.params[:] al.getparams(AL.DEFAULT_DEVICE, self.oldparams) al.setparams(AL.DEFAULT_DEVICE, self.params) if self.converter: data = self.converter(data) self.port.writesamps(data) def getfilled(self): if self.port: return self.port.getfilled() else: return 0 def getfillable(self): if self.port: return self.port.getfillable() else: return self.config.getqueuesize() # private methods ## if 0: access *: private def ulaw2lin(self, data): import audioop return audioop.ulaw2lin(data, 2) class Play_Audio_sun: ## if 0: access outrate, sampwidth, nchannels, inited_outrate, inited_width, \ ## inited_nchannels, converter: private def __init__(self): self.outrate = 0 self.sampwidth = 0 self.nchannels = 0 self.inited_outrate = 0 self.inited_width = 0 self.inited_nchannels = 0 self.converter = None self.port = None return def __del__(self): self.stop() def setoutrate(self, rate): self.outrate = rate self.inited_outrate = 1 def setsampwidth(self, width): self.sampwidth = width self.inited_width = 1 def setnchannels(self, nchannels): self.nchannels = nchannels self.inited_nchannels = 1 def writeframes(self, data): if not (self.inited_outrate and self.inited_width and self.inited_nchannels): raise error, 'params not specified' if not self.port: import sunaudiodev, SUNAUDIODEV self.port = sunaudiodev.open('w') info = self.port.getinfo() info.o_sample_rate = self.outrate info.o_channels = self.nchannels if self.sampwidth == 0: info.o_precision = 8 self.o_encoding = SUNAUDIODEV.ENCODING_ULAW # XXX Hack, hack -- leave defaults else: info.o_precision = 8 * self.sampwidth info.o_encoding = SUNAUDIODEV.ENCODING_LINEAR self.port.setinfo(info) if self.converter: data = self.converter(data) self.port.write(data) def wait(self): if not self.port: return self.port.drain() self.stop() def stop(self): if self.port: self.port.flush() self.port.close() self.port = None def getfilled(self): if self.port: return self.port.obufcount() else: return 0 ## # Nobody remembers what this method does, and it's broken. :-( ## def getfillable(self): ## return BUFFERSIZE - self.getfilled() def AudioDev(): # Dynamically try to import and use a platform specific module. try: import al except ImportError: try: import sunaudiodev return Play_Audio_sun() except ImportError: try: import Audio_mac except ImportError: raise error, 'no audio device' else: return Audio_mac.Play_Audio_mac() else: return Play_Audio_sgi() def test(fn = None): import sys if sys.argv[1:]: fn = sys.argv[1] else: fn = 'f:just samples:just.aif' import aifc af = aifc.open(fn, 'r') print fn, af.getparams() p = AudioDev() p.setoutrate(af.getframerate()) p.setsampwidth(af.getsampwidth()) p.setnchannels(af.getnchannels()) BUFSIZ = af.getframerate()/af.getsampwidth()/af.getnchannels() while 1: data = af.readframes(BUFSIZ) if not data: break print len(data) p.writeframes(data) p.wait() if __name__ == '__main__': test()
[+]
..
[-] __phello__.foo.py
[edit]
[-] this.pyo
[edit]
[-] md5.pyc
[edit]
[-] contextlib.pyc
[edit]
[-] zipfile.py
[edit]
[-] stringold.pyc
[edit]
[-] UserList.pyc
[edit]
[-] audiodev.pyo
[edit]
[-] shlex.pyc
[edit]
[-] new.pyo
[edit]
[-] asyncore.pyc
[edit]
[-] SimpleXMLRPCServer.pyc
[edit]
[-] tabnanny.py
[edit]
[-] mailcap.pyo
[edit]
[-] collections.pyo
[edit]
[-] cmd.py
[edit]
[-] ihooks.pyc
[edit]
[-] cProfile.py
[edit]
[-] sunau.pyc
[edit]
[-] commands.pyo
[edit]
[-] tempfile.py
[edit]
[-] ast.pyo
[edit]
[-] sre.pyc
[edit]
[-] __phello__.foo.pyo
[edit]
[-] rfc822.py
[edit]
[-] argparse.py
[edit]
[-] keyword.pyc
[edit]
[-] tty.pyo
[edit]
[-] pickletools.pyo
[edit]
[-] mimetools.py
[edit]
[-] platform.py
[edit]
[-] platform.pyc
[edit]
[-] difflib.pyc
[edit]
[-] weakref.pyo
[edit]
[-] wsgiref.egg-info
[edit]
[-] xmllib.pyo
[edit]
[-] fpformat.pyc
[edit]
[-] imghdr.pyo
[edit]
[-] binhex.py
[edit]
[-] antigravity.py
[edit]
[-] sysconfig.pyc
[edit]
[+]
curses
[-] commands.py
[edit]
[-] chunk.pyo
[edit]
[-] sre_compile.pyc
[edit]
[-] ssl.pyc
[edit]
[-] random.pyc
[edit]
[-] ConfigParser.py
[edit]
[-] xdrlib.pyc
[edit]
[-] inspect.py
[edit]
[-] linecache.pyo
[edit]
[-] sunaudio.py
[edit]
[-] repr.py
[edit]
[-] stringold.py
[edit]
[-] _sysconfigdata.pyo
[edit]
[-] sunau.py
[edit]
[-] threading.pyc
[edit]
[-] os.pyc
[edit]
[-] HTMLParser.pyc
[edit]
[-] ihooks.py
[edit]
[-] imghdr.py
[edit]
[-] sha.pyc
[edit]
[-] textwrap.pyc
[edit]
[-] Queue.py
[edit]
[-] _osx_support.pyo
[edit]
[-] random.py
[edit]
[+]
hotshot
[-] macpath.py
[edit]
[-] compileall.pyo
[edit]
[-] weakref.pyc
[edit]
[-] hmac.py
[edit]
[-] heapq.pyc
[edit]
[-] base64.py
[edit]
[-] doctest.pyc
[edit]
[-] sre_constants.pyc
[edit]
[-] copy_reg.py
[edit]
[-] _sysconfigdata.py
[edit]
[-] cgitb.py
[edit]
[-] dumbdbm.pyc
[edit]
[-] binhex.pyo
[edit]
[-] statvfs.py
[edit]
[-] _abcoll.pyc
[edit]
[-] rexec.pyc
[edit]
[-] stringprep.py
[edit]
[-] nturl2path.pyo
[edit]
[-] urllib2.py
[edit]
[+]
Tools
[-] mimetools.pyc
[edit]
[-] StringIO.py
[edit]
[-] ast.py
[edit]
[-] trace.pyo
[edit]
[-] warnings.pyc
[edit]
[-] sre.pyo
[edit]
[-] py_compile.pyo
[edit]
[-] textwrap.py
[edit]
[-] _pyio.pyc
[edit]
[-] glob.pyc
[edit]
[-] UserList.py
[edit]
[-] statvfs.pyc
[edit]
[-] runpy.pyo
[edit]
[-] dis.py
[edit]
[-] chunk.py
[edit]
[-] this.py
[edit]
[-] py_compile.py
[edit]
[-] _threading_local.pyc
[edit]
[-] shelve.pyc
[edit]
[-] fnmatch.py
[edit]
[-] pstats.pyo
[edit]
[-] colorsys.pyo
[edit]
[-] robotparser.pyo
[edit]
[-] popen2.pyo
[edit]
[-] xmllib.py
[edit]
[-] dbhash.py
[edit]
[-] SocketServer.py
[edit]
[-] plistlib.pyo
[edit]
[-] robotparser.py
[edit]
[-] zipfile.pyo
[edit]
[-] py_compile.pyc
[edit]
[-] keyword.pyo
[edit]
[-] HTMLParser.py
[edit]
[-] sets.py
[edit]
[-] httplib.py
[edit]
[+]
xml
[-] netrc.pyc
[edit]
[-] posixpath.pyo
[edit]
[-] opcode.py
[edit]
[+]
Doc
[-] BaseHTTPServer.pyc
[edit]
[-] dbhash.pyc
[edit]
[-] mimetypes.pyo
[edit]
[+]
site-packages
[-] cProfile.pyc
[edit]
[-] smtplib.pyc
[edit]
[+]
bsddb
[-] pydoc.pyc
[edit]
[-] mutex.pyo
[edit]
[-] sre_compile.py
[edit]
[-] commands.pyc
[edit]
[-] posixfile.pyo
[edit]
[-] pipes.pyo
[edit]
[-] _pyio.py
[edit]
[-] cgi.pyo
[edit]
[-] mhlib.pyo
[edit]
[-] site.pyo
[edit]
[-] base64.pyc
[edit]
[-] pty.py
[edit]
[-] macurl2path.py
[edit]
[-] _abcoll.py
[edit]
[-] tempfile.pyo
[edit]
[-] atexit.pyo
[edit]
[-] _sysconfigdata.pyc
[edit]
[-] rexec.pyo
[edit]
[-] numbers.pyo
[edit]
[-] anydbm.pyc
[edit]
[+]
lib2to3
[-] statvfs.pyo
[edit]
[+]
wsgiref
[+]
lib-tk
[-] heapq.py
[edit]
[-] keyword.py
[edit]
[-] antigravity.pyo
[edit]
[-] codecs.py
[edit]
[-] shlex.pyo
[edit]
[-] quopri.pyo
[edit]
[-] base64.pyo
[edit]
[-] HTMLParser.pyo
[edit]
[-] mimify.pyc
[edit]
[-] stat.pyc
[edit]
[-] pickletools.py
[edit]
[-] compileall.py
[edit]
[-] pickle.pyc
[edit]
[-] cookielib.pyc
[edit]
[-] nturl2path.py
[edit]
[-] urllib.py
[edit]
[+]
idlelib
[-] warnings.py
[edit]
[-] shutil.py
[edit]
[-] mailbox.pyc
[edit]
[-] socket.py
[edit]
[-] pdb.doc
[edit]
[-] pdb.py
[edit]
[-] toaiff.pyo
[edit]
[-] io.pyo
[edit]
[-] timeit.pyo
[edit]
[-] pdb.pyc
[edit]
[-] types.pyc
[edit]
[-] pyclbr.pyc
[edit]
[-] popen2.py
[edit]
[-] doctest.pyo
[edit]
[-] pprint.pyc
[edit]
[-] macurl2path.pyo
[edit]
[-] formatter.py
[edit]
[-] xmllib.pyc
[edit]
[-] hashlib.pyo
[edit]
[-] traceback.pyo
[edit]
[-] types.py
[edit]
[-] locale.pyc
[edit]
[-] runpy.py
[edit]
[-] Cookie.py
[edit]
[-] xmlrpclib.pyc
[edit]
[-] DocXMLRPCServer.pyo
[edit]
[-] ConfigParser.pyo
[edit]
[-] stringprep.pyo
[edit]
[-] _strptime.pyo
[edit]
[-] shutil.pyo
[edit]
[-] uu.py
[edit]
[-] telnetlib.pyo
[edit]
[-] macpath.pyc
[edit]
[-] sndhdr.pyo
[edit]
[-] sets.pyo
[edit]
[-] tempfile.pyc
[edit]
[-] htmlentitydefs.py
[edit]
[-] macpath.pyo
[edit]
[-] _threading_local.py
[edit]
[-] getpass.pyo
[edit]
[-] difflib.pyo
[edit]
[-] mailcap.py
[edit]
[-] heapq.pyo
[edit]
[-] os2emxpath.py
[edit]
[-] textwrap.pyo
[edit]
[-] sysconfig.pyo
[edit]
[-] rfc822.pyo
[edit]
[-] optparse.pyo
[edit]
[-] sndhdr.pyc
[edit]
[-] genericpath.pyc
[edit]
[-] atexit.pyc
[edit]
[-] inspect.pyc
[edit]
[-] tty.pyc
[edit]
[-] chunk.pyc
[edit]
[-] md5.pyo
[edit]
[-] getpass.pyc
[edit]
[-] bdb.pyo
[edit]
[-] DocXMLRPCServer.py
[edit]
[-] SimpleHTTPServer.pyo
[edit]
[-] mhlib.pyc
[edit]
[-] _LWPCookieJar.pyc
[edit]
[-] imaplib.pyo
[edit]
[-] codeop.pyo
[edit]
[-] pkgutil.pyc
[edit]
[-] bisect.py
[edit]
[-] linecache.py
[edit]
[-] aifc.pyo
[edit]
[-] calendar.pyc
[edit]
[-] contextlib.pyo
[edit]
[-] warnings.pyo
[edit]
[-] _weakrefset.pyo
[edit]
[-] genericpath.pyo
[edit]
[-] colorsys.py
[edit]
[-] UserDict.pyc
[edit]
[-] subprocess.pyo
[edit]
[-] aifc.pyc
[edit]
[-] anydbm.pyo
[edit]
[-] multifile.pyo
[edit]
[-] modulefinder.pyc
[edit]
[-] tokenize.pyc
[edit]
[-] mutex.py
[edit]
[-] urllib.pyo
[edit]
[-] glob.py
[edit]
[+]
plat-linux2
[-] mailcap.pyc
[edit]
[-] mimetypes.pyc
[edit]
[-] sndhdr.py
[edit]
[-] functools.pyc
[edit]
[-] cProfile.pyo
[edit]
[-] abc.pyo
[edit]
[-] ssl.py
[edit]
[-] dis.pyc
[edit]
[-] collections.py
[edit]
[-] _strptime.py
[edit]
[-] rlcompleter.pyc
[edit]
[-] _LWPCookieJar.pyo
[edit]
[-] fpformat.pyo
[edit]
[-] sre_compile.pyo
[edit]
[-] csv.pyo
[edit]
[-] trace.pyc
[edit]
[-] wave.pyo
[edit]
[-] asynchat.pyc
[edit]
[-] code.pyc
[edit]
[-] Bastion.pyo
[edit]
[-] modulefinder.pyo
[edit]
[-] contextlib.py
[edit]
[-] argparse.pyo
[edit]
[-] user.py
[edit]
[-] filecmp.py
[edit]
[-] rfc822.pyc
[edit]
[-] sunaudio.pyo
[edit]
[-] decimal.pyc
[edit]
[+]
logging
[-] sre_parse.pyc
[edit]
[-] _weakrefset.pyc
[edit]
[-] posixpath.pyc
[edit]
[-] gzip.pyc
[edit]
[-] new.pyc
[edit]
[-] code.pyo
[edit]
[-] getopt.pyc
[edit]
[-] copy.pyo
[edit]
[-] filecmp.pyc
[edit]
[-] socket.pyc
[edit]
[-] dircache.pyo
[edit]
[-] xdrlib.pyo
[edit]
[-] platform.pyo
[edit]
[-] pyclbr.pyo
[edit]
[-] token.py
[edit]
[-] pipes.pyc
[edit]
[-] gzip.py
[edit]
[-] copy.pyc
[edit]
[-] string.py
[edit]
[-] toaiff.pyc
[edit]
[-] genericpath.py
[edit]
[-] _osx_support.pyc
[edit]
[-] _osx_support.py
[edit]
[-] sre_parse.pyo
[edit]
[-] pickletools.pyc
[edit]
[-] stat.py
[edit]
[-] Bastion.pyc
[edit]
[-] mimify.pyo
[edit]
[-] __future__.py
[edit]
[+]
distutils
[-] dummy_threading.py
[edit]
[-] webbrowser.py
[edit]
[-] Queue.pyo
[edit]
[-] dircache.py
[edit]
[-] posixfile.pyc
[edit]
[-] os2emxpath.pyc
[edit]
[-] symtable.py
[edit]
[+]
lib-dynload
[-] getopt.py
[edit]
[-] antigravity.pyc
[edit]
[-] _threading_local.pyo
[edit]
[-] dumbdbm.pyo
[edit]
[-] wave.py
[edit]
[-] urllib.pyc
[edit]
[-] codeop.py
[edit]
[-] httplib.pyc
[edit]
[-] abc.py
[edit]
[-] whichdb.py
[edit]
[-] socket.pyo
[edit]
[-] uu.pyo
[edit]
[+]
pydoc_data
[-] formatter.pyc
[edit]
[-] copy_reg.pyo
[edit]
[-] toaiff.py
[edit]
[-] site.pyc
[edit]
[-] profile.pyc
[edit]
[-] markupbase.pyc
[edit]
[-] SocketServer.pyo
[edit]
[-] codecs.pyc
[edit]
[-] httplib.pyo
[edit]
[-] telnetlib.py
[edit]
[-] _MozillaCookieJar.pyc
[edit]
[-] __future__.pyc
[edit]
[+]
unittest
[-] fileinput.py
[edit]
[-] ihooks.pyo
[edit]
[-] atexit.py
[edit]
[-] Bastion.py
[edit]
[-] ftplib.py
[edit]
[+]
ctypes
[-] sched.pyc
[edit]
[-] SimpleHTTPServer.py
[edit]
[-] pipes.py
[edit]
[-] pydoc.pyo
[edit]
[-] posixfile.py
[edit]
[-] ntpath.pyo
[edit]
[-] aifc.py
[edit]
[-] Queue.pyc
[edit]
[-] pickle.pyo
[edit]
[-] binhex.pyc
[edit]
[-] shelve.pyo
[edit]
[-] pprint.py
[edit]
[-] asynchat.pyo
[edit]
[-] os.pyo
[edit]
[-] hashlib.pyc
[edit]
[-] io.pyc
[edit]
[-] imghdr.pyc
[edit]
[-] difflib.py
[edit]
[-] filecmp.pyo
[edit]
[-] uuid.py
[edit]
[-] optparse.pyc
[edit]
[-] cgitb.pyc
[edit]
[-] threading.py
[edit]
[-] plistlib.pyc
[edit]
[-] robotparser.pyc
[edit]
[-] urllib2.pyc
[edit]
[-] dbhash.pyo
[edit]
[-] shutil.pyc
[edit]
[-] multifile.pyc
[edit]
[-] sre_parse.py
[edit]
[-] netrc.pyo
[edit]
[-] htmllib.pyo
[edit]
[-] whichdb.pyc
[edit]
[-] subprocess.py
[edit]
[-] pdb.pyo
[edit]
[+]
importlib
[-] bisect.pyc
[edit]
[-] getpass.py
[edit]
[-] fractions.pyo
[edit]
[-] dummy_threading.pyc
[edit]
[-] gettext.pyc
[edit]
[-] trace.py
[edit]
[-] struct.py
[edit]
[-] imputil.pyc
[edit]
[-] locale.pyo
[edit]
[-] SocketServer.pyc
[edit]
[-] token.pyc
[edit]
[-] mimify.py
[edit]
[-] uu.pyc
[edit]
[-] dis.pyo
[edit]
[-] crypt.pyo
[edit]
[-] repr.pyc
[edit]
[-] smtpd.pyc
[edit]
[-] rexec.py
[edit]
[-] plistlib.py
[edit]
[-] mhlib.py
[edit]
[-] traceback.pyc
[edit]
[-] SimpleXMLRPCServer.py
[edit]
[-] StringIO.pyo
[edit]
[-] CGIHTTPServer.pyo
[edit]
[-] string.pyc
[edit]
[-] crypt.pyc
[edit]
[-] asynchat.py
[edit]
[-] dummy_threading.pyo
[edit]
[-] fractions.py
[edit]
[-] shlex.py
[edit]
[-] _MozillaCookieJar.pyo
[edit]
[-] opcode.pyo
[edit]
[-] stringold.pyo
[edit]
[-] ftplib.pyo
[edit]
[-] fnmatch.pyo
[edit]
[+]
compiler
[-] bdb.py
[edit]
[-] repr.pyo
[edit]
[-] locale.py
[edit]
[-] calendar.py
[edit]
[-] _LWPCookieJar.py
[edit]
[-] poplib.py
[edit]
[-] codecs.pyo
[edit]
[-] posixpath.py
[edit]
[-] cookielib.pyo
[edit]
[-] user.pyo
[edit]
[-] imaplib.py
[edit]
[-] SimpleHTTPServer.pyc
[edit]
[+]
config
[-] imputil.py
[edit]
[-] symbol.pyc
[edit]
[-] tarfile.pyo
[edit]
[-] UserString.pyo
[edit]
[-] cmd.pyo
[edit]
[-] _abcoll.pyo
[edit]
[-] pickle.py
[edit]
[-] symtable.pyc
[edit]
[-] timeit.py
[edit]
[-] SimpleXMLRPCServer.pyo
[edit]
[-] tabnanny.pyo
[edit]
[-] urllib2.pyo
[edit]
[-] symtable.pyo
[edit]
[-] MimeWriter.pyc
[edit]
[+]
json
[-] string.pyo
[edit]
[-] imaplib.pyc
[edit]
[-] traceback.py
[edit]
[-] nntplib.pyc
[edit]
[-] random.pyo
[edit]
[+]
multiprocessing
[-] collections.pyc
[edit]
[-] shelve.py
[edit]
[-] rlcompleter.pyo
[edit]
[-] sha.py
[edit]
[-] __phello__.foo.pyc
[edit]
[-] timeit.pyc
[edit]
[-] dummy_thread.py
[edit]
[-] inspect.pyo
[edit]
[-] pprint.pyo
[edit]
[-] csv.py
[edit]
[-] htmllib.py
[edit]
[-] tarfile.py
[edit]
[-] sgmllib.py
[edit]
[-] numbers.py
[edit]
[-] glob.pyo
[edit]
[-] formatter.pyo
[edit]
[-] uuid.pyo
[edit]
[-] optparse.py
[edit]
[-] decimal.pyo
[edit]
[-] cgi.py
[edit]
[-] getopt.pyo
[edit]
[-] pstats.py
[edit]
[-] dumbdbm.py
[edit]
[-] colorsys.pyc
[edit]
[-] md5.py
[edit]
[-] profile.pyo
[edit]
[-] ssl.pyo
[edit]
[-] quopri.pyc
[edit]
[-] crypt.py
[edit]
[-] fileinput.pyo
[edit]
[-] htmlentitydefs.pyc
[edit]
[-] urlparse.py
[edit]
[-] site.py
[edit]
[-] pkgutil.py
[edit]
[-] re.py
[edit]
[-] nturl2path.pyc
[edit]
[-] pyclbr.py
[edit]
[-] markupbase.pyo
[edit]
[-] pydoc.py
[edit]
[-] markupbase.py
[edit]
[-] fpformat.py
[edit]
[-] mutex.pyc
[edit]
[-] sre_constants.py
[edit]
[-] uuid.pyc
[edit]
[-] webbrowser.pyc
[edit]
[-] dircache.pyc
[edit]
[-] xdrlib.py
[edit]
[-] mailbox.pyo
[edit]
[-] abc.pyc
[edit]
[-] nntplib.py
[edit]
[-] gzip.pyo
[edit]
[-] sre.py
[edit]
[-] fileinput.pyc
[edit]
[-] ftplib.pyc
[edit]
[-] macurl2path.pyc
[edit]
[-] mimetypes.py
[edit]
[-] linecache.pyc
[edit]
[-] hmac.pyc
[edit]
[-] anydbm.py
[edit]
[-] _MozillaCookieJar.py
[edit]
[-] _pyio.pyo
[edit]
[-] stat.pyo
[edit]
[-] urlparse.pyc
[edit]
[-] fnmatch.pyc
[edit]
[+]
email
[-] poplib.pyc
[edit]
[-] UserString.py
[edit]
[-] wave.pyc
[edit]
[-] quopri.py
[edit]
[-] tarfile.pyc
[edit]
[-] sha.pyo
[edit]
[-] doctest.py
[edit]
[-] re.pyo
[edit]
[-] cgitb.pyo
[edit]
[-] __future__.pyo
[edit]
[-] asyncore.pyo
[edit]
[-] codeop.pyc
[edit]
[-] audiodev.pyc
[edit]
[-] zipfile.pyc
[edit]
[-] copy_reg.pyc
[edit]
[-] sunau.pyo
[edit]
[-] profile.py
[edit]
[-] gettext.pyo
[edit]
[-] smtpd.pyo
[edit]
[-] BaseHTTPServer.pyo
[edit]
[-] pty.pyc
[edit]
[-] sched.py
[edit]
[-] hashlib.py
[edit]
[-] symbol.pyo
[edit]
[-] sets.pyc
[edit]
[-] Cookie.pyo
[edit]
[-] telnetlib.pyc
[edit]
[-] numbers.pyc
[edit]
[-] opcode.pyc
[edit]
[-] functools.py
[edit]
[-] smtplib.py
[edit]
[-] copy.py
[edit]
[-] pty.pyo
[edit]
[-] tty.py
[edit]
[-] new.py
[edit]
[-] token.pyo
[edit]
[-] subprocess.pyc
[edit]
[-] os.py
[edit]
[-] cmd.pyc
[edit]
[-] sgmllib.pyo
[edit]
[-] UserDict.py
[edit]
[-] sre_constants.pyo
[edit]
[-] tabnanny.pyc
[edit]
[-] webbrowser.pyo
[edit]
[-] this.pyc
[edit]
[-] xmlrpclib.py
[edit]
[-] _weakrefset.py
[edit]
[-] netrc.py
[edit]
[-] UserDict.pyo
[edit]
[-] user.pyc
[edit]
[-] xmlrpclib.pyo
[edit]
[-] struct.pyo
[edit]
[-] code.py
[edit]
[-] asyncore.py
[edit]
[-] cgi.pyc
[edit]
[-] tokenize.py
[edit]
[-] argparse.pyc
[edit]
[-] runpy.pyc
[edit]
[-] types.pyo
[edit]
[-] pstats.pyc
[edit]
[-] sched.pyo
[edit]
[-] mimetools.pyo
[edit]
[+]
encodings
[-] struct.pyc
[edit]
[-] multifile.py
[edit]
[-] io.py
[edit]
[-] smtpd.py
[edit]
[-] Cookie.pyc
[edit]
[-] sysconfig.py
[edit]
[-] compileall.pyc
[edit]
[-] BaseHTTPServer.py
[edit]
[+]
Demo
[-] bdb.pyc
[edit]
[-] decimal.py
[edit]
[-] csv.pyc
[edit]
[-] calendar.pyo
[edit]
[-] functools.pyo
[edit]
[-] sgmllib.pyc
[edit]
[-] stringprep.pyc
[edit]
[+]
sqlite3
[-] tokenize.pyo
[edit]
[-] rlcompleter.py
[edit]
[-] CGIHTTPServer.py
[edit]
[-] urlparse.pyo
[edit]
[-] htmllib.pyc
[edit]
[-] dummy_thread.pyc
[edit]
[-] whichdb.pyo
[edit]
[-] bisect.pyo
[edit]
[-] UserList.pyo
[edit]
[-] popen2.pyc
[edit]
[-] StringIO.pyc
[edit]
[-] imputil.pyo
[edit]
[-] ntpath.py
[edit]
[+]
test
[-] DocXMLRPCServer.pyc
[edit]
[-] UserString.pyc
[edit]
[-] weakref.py
[edit]
[-] poplib.pyo
[edit]
[-] fractions.pyc
[edit]
[-] ConfigParser.pyc
[edit]
[-] symbol.py
[edit]
[-] modulefinder.py
[edit]
[-] ast.pyc
[edit]
[-] audiodev.py
[edit]
[-] nntplib.pyo
[edit]
[-] hmac.pyo
[edit]
[-] htmlentitydefs.pyo
[edit]
[-] cookielib.py
[edit]
[-] os2emxpath.pyo
[edit]
[-] _strptime.pyc
[edit]
[-] re.pyc
[edit]
[-] sunaudio.pyc
[edit]
[-] MimeWriter.py
[edit]
[-] threading.pyo
[edit]
[-] dummy_thread.pyo
[edit]
[-] gettext.py
[edit]
[-] CGIHTTPServer.pyc
[edit]
[-] smtplib.pyo
[edit]
[-] pkgutil.pyo
[edit]
[-] MimeWriter.pyo
[edit]
[-] ntpath.pyc
[edit]
[-] mailbox.py
[edit]