PATH:
lib64
/
python2.7
# -*- coding: iso-8859-1 -*- """A lexical analyzer class for simple shell-like syntaxes.""" # Module and documentation by Eric S. Raymond, 21 Dec 1998 # Input stacking and error message cleanup added by ESR, March 2000 # push_source() and pop_source() made explicit by ESR, January 2001. # Posix compliance, split(), string arguments, and # iterator interface by Gustavo Niemeyer, April 2003. import os.path import sys from collections import deque try: from cStringIO import StringIO except ImportError: from StringIO import StringIO __all__ = ["shlex", "split"] class shlex: "A lexical analyzer class for simple shell-like syntaxes." def __init__(self, instream=None, infile=None, posix=False): if isinstance(instream, basestring): instream = StringIO(instream) if instream is not None: self.instream = instream self.infile = infile else: self.instream = sys.stdin self.infile = None self.posix = posix if posix: self.eof = None else: self.eof = '' self.commenters = '#' self.wordchars = ('abcdfeghijklmnopqrstuvwxyz' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789_') if self.posix: self.wordchars += ('�����������������������������' '������������������������������') self.whitespace = ' \t\r\n' self.whitespace_split = False self.quotes = '\'"' self.escape = '\\' self.escapedquotes = '"' self.state = ' ' self.pushback = deque() self.lineno = 1 self.debug = 0 self.token = '' self.filestack = deque() self.source = None if self.debug: print 'shlex: reading from %s, line %d' \ % (self.instream, self.lineno) def push_token(self, tok): "Push a token onto the stack popped by the get_token method" if self.debug >= 1: print "shlex: pushing token " + repr(tok) self.pushback.appendleft(tok) def push_source(self, newstream, newfile=None): "Push an input source onto the lexer's input source stack." if isinstance(newstream, basestring): newstream = StringIO(newstream) self.filestack.appendleft((self.infile, self.instream, self.lineno)) self.infile = newfile self.instream = newstream self.lineno = 1 if self.debug: if newfile is not None: print 'shlex: pushing to file %s' % (self.infile,) else: print 'shlex: pushing to stream %s' % (self.instream,) def pop_source(self): "Pop the input source stack." self.instream.close() (self.infile, self.instream, self.lineno) = self.filestack.popleft() if self.debug: print 'shlex: popping to %s, line %d' \ % (self.instream, self.lineno) self.state = ' ' def get_token(self): "Get a token from the input stream (or from stack if it's nonempty)" if self.pushback: tok = self.pushback.popleft() if self.debug >= 1: print "shlex: popping token " + repr(tok) return tok # No pushback. Get a token. raw = self.read_token() # Handle inclusions if self.source is not None: while raw == self.source: spec = self.sourcehook(self.read_token()) if spec: (newfile, newstream) = spec self.push_source(newstream, newfile) raw = self.get_token() # Maybe we got EOF instead? while raw == self.eof: if not self.filestack: return self.eof else: self.pop_source() raw = self.get_token() # Neither inclusion nor EOF if self.debug >= 1: if raw != self.eof: print "shlex: token=" + repr(raw) else: print "shlex: token=EOF" return raw def read_token(self): quoted = False escapedstate = ' ' while True: nextchar = self.instream.read(1) if nextchar == '\n': self.lineno = self.lineno + 1 if self.debug >= 3: print "shlex: in state", repr(self.state), \ "I see character:", repr(nextchar) if self.state is None: self.token = '' # past end of file break elif self.state == ' ': if not nextchar: self.state = None # end of file break elif nextchar in self.whitespace: if self.debug >= 2: print "shlex: I see whitespace in whitespace state" if self.token or (self.posix and quoted): break # emit current token else: continue elif nextchar in self.commenters: self.instream.readline() self.lineno = self.lineno + 1 elif self.posix and nextchar in self.escape: escapedstate = 'a' self.state = nextchar elif nextchar in self.wordchars: self.token = nextchar self.state = 'a' elif nextchar in self.quotes: if not self.posix: self.token = nextchar self.state = nextchar elif self.whitespace_split: self.token = nextchar self.state = 'a' else: self.token = nextchar if self.token or (self.posix and quoted): break # emit current token else: continue elif self.state in self.quotes: quoted = True if not nextchar: # end of file if self.debug >= 2: print "shlex: I see EOF in quotes state" # XXX what error should be raised here? raise ValueError, "No closing quotation" if nextchar == self.state: if not self.posix: self.token = self.token + nextchar self.state = ' ' break else: self.state = 'a' elif self.posix and nextchar in self.escape and \ self.state in self.escapedquotes: escapedstate = self.state self.state = nextchar else: self.token = self.token + nextchar elif self.state in self.escape: if not nextchar: # end of file if self.debug >= 2: print "shlex: I see EOF in escape state" # XXX what error should be raised here? raise ValueError, "No escaped character" # In posix shells, only the quote itself or the escape # character may be escaped within quotes. if escapedstate in self.quotes and \ nextchar != self.state and nextchar != escapedstate: self.token = self.token + self.state self.token = self.token + nextchar self.state = escapedstate elif self.state == 'a': if not nextchar: self.state = None # end of file break elif nextchar in self.whitespace: if self.debug >= 2: print "shlex: I see whitespace in word state" self.state = ' ' if self.token or (self.posix and quoted): break # emit current token else: continue elif nextchar in self.commenters: self.instream.readline() self.lineno = self.lineno + 1 if self.posix: self.state = ' ' if self.token or (self.posix and quoted): break # emit current token else: continue elif self.posix and nextchar in self.quotes: self.state = nextchar elif self.posix and nextchar in self.escape: escapedstate = 'a' self.state = nextchar elif nextchar in self.wordchars or nextchar in self.quotes \ or self.whitespace_split: self.token = self.token + nextchar else: self.pushback.appendleft(nextchar) if self.debug >= 2: print "shlex: I see punctuation in word state" self.state = ' ' if self.token or (self.posix and quoted): break # emit current token else: continue result = self.token self.token = '' if self.posix and not quoted and result == '': result = None if self.debug > 1: if result: print "shlex: raw token=" + repr(result) else: print "shlex: raw token=EOF" return result def sourcehook(self, newfile): "Hook called on a filename to be sourced." if newfile[0] == '"': newfile = newfile[1:-1] # This implements cpp-like semantics for relative-path inclusion. if isinstance(self.infile, basestring) and not os.path.isabs(newfile): newfile = os.path.join(os.path.dirname(self.infile), newfile) return (newfile, open(newfile, "r")) def error_leader(self, infile=None, lineno=None): "Emit a C-compiler-like, Emacs-friendly error-message leader." if infile is None: infile = self.infile if lineno is None: lineno = self.lineno return "\"%s\", line %d: " % (infile, lineno) def __iter__(self): return self def next(self): token = self.get_token() if token == self.eof: raise StopIteration return token def split(s, comments=False, posix=True): lex = shlex(s, posix=posix) lex.whitespace_split = True if not comments: lex.commenters = '' return list(lex) if __name__ == '__main__': if len(sys.argv) == 1: lexer = shlex() else: file = sys.argv[1] lexer = shlex(open(file), file) while 1: tt = lexer.get_token() if tt: print "Token: " + repr(tt) else: break
[+]
..
[-] smtplib.py
[edit]
[-] contextlib.py
[edit]
[-] argparse.pyc
[edit]
[-] py_compile.pyo
[edit]
[-] zipfile.py
[edit]
[-] rlcompleter.py
[edit]
[-] DocXMLRPCServer.py
[edit]
[-] ssl.pyo
[edit]
[-] base64.pyo
[edit]
[-] subprocess.pyc
[edit]
[-] imaplib.py
[edit]
[-] multifile.pyo
[edit]
[-] crypt.pyc
[edit]
[-] statvfs.py
[edit]
[-] sndhdr.pyc
[edit]
[-] threading.pyo
[edit]
[-] sha.pyc
[edit]
[-] _osx_support.pyo
[edit]
[-] optparse.pyo
[edit]
[-] macurl2path.pyo
[edit]
[-] poplib.pyo
[edit]
[-] threading.pyc
[edit]
[-] opcode.pyo
[edit]
[-] htmllib.pyo
[edit]
[-] argparse.pyo
[edit]
[-] bisect.py
[edit]
[-] linecache.py
[edit]
[-] UserDict.py
[edit]
[-] pipes.py
[edit]
[-] asyncore.pyc
[edit]
[-] sre.pyc
[edit]
[-] pprint.pyo
[edit]
[-] posixpath.py
[edit]
[-] dbhash.pyo
[edit]
[-] rexec.pyc
[edit]
[-] whichdb.pyo
[edit]
[-] codecs.py
[edit]
[-] abc.pyc
[edit]
[-] _MozillaCookieJar.pyo
[edit]
[+]
idlelib
[-] types.py
[edit]
[-] inspect.pyc
[edit]
[-] httplib.pyo
[edit]
[-] cookielib.py
[edit]
[-] httplib.py
[edit]
[-] pyclbr.pyc
[edit]
[+]
compiler
[-] colorsys.pyo
[edit]
[-] _threading_local.py
[edit]
[-] dbhash.py
[edit]
[-] htmllib.py
[edit]
[-] ConfigParser.py
[edit]
[-] imaplib.pyc
[edit]
[-] sgmllib.pyo
[edit]
[-] code.pyc
[edit]
[-] ConfigParser.pyo
[edit]
[-] uu.py
[edit]
[-] genericpath.pyo
[edit]
[-] _strptime.pyo
[edit]
[-] urllib.pyo
[edit]
[-] random.pyc
[edit]
[-] doctest.py
[edit]
[-] dircache.pyc
[edit]
[-] shlex.pyc
[edit]
[-] _osx_support.pyc
[edit]
[-] sndhdr.py
[edit]
[-] socket.py
[edit]
[-] subprocess.py
[edit]
[-] sre_constants.pyo
[edit]
[-] BaseHTTPServer.pyo
[edit]
[-] nntplib.py
[edit]
[-] xmllib.pyo
[edit]
[+]
ctypes
[-] this.pyc
[edit]
[-] dumbdbm.pyc
[edit]
[-] BaseHTTPServer.pyc
[edit]
[-] robotparser.py
[edit]
[-] imputil.pyo
[edit]
[-] ConfigParser.pyc
[edit]
[-] wave.pyc
[edit]
[-] toaiff.pyc
[edit]
[-] ntpath.pyc
[edit]
[-] re.pyo
[edit]
[-] getopt.pyc
[edit]
[-] _pyio.py
[edit]
[-] glob.pyc
[edit]
[-] sched.pyc
[edit]
[-] dbhash.pyc
[edit]
[-] tokenize.pyc
[edit]
[-] uu.pyo
[edit]
[-] doctest.pyo
[edit]
[-] socket.pyo
[edit]
[-] compileall.pyo
[edit]
[-] codeop.pyo
[edit]
[-] getopt.pyo
[edit]
[-] profile.pyo
[edit]
[-] sre_parse.pyo
[edit]
[-] dircache.py
[edit]
[-] dummy_thread.pyc
[edit]
[-] DocXMLRPCServer.pyo
[edit]
[-] asynchat.pyc
[edit]
[-] stringold.py
[edit]
[-] new.py
[edit]
[-] pipes.pyc
[edit]
[-] this.pyo
[edit]
[-] user.pyc
[edit]
[-] mimetypes.py
[edit]
[-] posixfile.py
[edit]
[-] pkgutil.pyc
[edit]
[-] sre.pyo
[edit]
[-] dis.pyc
[edit]
[-] CGIHTTPServer.py
[edit]
[-] BaseHTTPServer.py
[edit]
[-] functools.py
[edit]
[-] hashlib.py
[edit]
[-] nturl2path.pyo
[edit]
[-] dumbdbm.pyo
[edit]
[-] _weakrefset.py
[edit]
[-] fractions.pyc
[edit]
[-] symtable.py
[edit]
[-] asynchat.py
[edit]
[-] telnetlib.py
[edit]
[-] urllib.pyc
[edit]
[+]
config
[-] Queue.pyc
[edit]
[-] sre_compile.py
[edit]
[-] ast.pyo
[edit]
[-] linecache.pyc
[edit]
[-] ntpath.py
[edit]
[-] runpy.py
[edit]
[-] ftplib.pyc
[edit]
[-] netrc.pyc
[edit]
[-] tabnanny.pyo
[edit]
[-] fnmatch.py
[edit]
[-] functools.pyo
[edit]
[-] cgitb.pyc
[edit]
[-] anydbm.pyc
[edit]
[-] tarfile.pyc
[edit]
[-] _pyio.pyc
[edit]
[-] nntplib.pyo
[edit]
[-] types.pyo
[edit]
[-] rlcompleter.pyc
[edit]
[-] mimetools.py
[edit]
[-] formatter.pyo
[edit]
[-] platform.pyo
[edit]
[-] poplib.py
[edit]
[-] htmlentitydefs.pyc
[edit]
[-] locale.py
[edit]
[-] collections.pyc
[edit]
[-] htmllib.pyc
[edit]
[-] audiodev.py
[edit]
[-] imaplib.pyo
[edit]
[-] md5.pyc
[edit]
[-] imghdr.pyo
[edit]
[+]
distutils
[-] gettext.pyo
[edit]
[-] shutil.pyc
[edit]
[-] pipes.pyo
[edit]
[-] SocketServer.py
[edit]
[-] decimal.pyo
[edit]
[+]
unittest
[+]
site-packages
[-] difflib.pyo
[edit]
[-] opcode.py
[edit]
[-] calendar.pyc
[edit]
[-] getpass.py
[edit]
[-] rexec.py
[edit]
[-] toaiff.py
[edit]
[-] zipfile.pyc
[edit]
[-] copy_reg.pyo
[edit]
[-] tabnanny.py
[edit]
[-] fnmatch.pyc
[edit]
[-] plistlib.py
[edit]
[-] nturl2path.py
[edit]
[-] symbol.py
[edit]
[-] smtplib.pyc
[edit]
[-] glob.py
[edit]
[-] csv.pyc
[edit]
[-] UserList.pyc
[edit]
[-] symbol.pyo
[edit]
[-] MimeWriter.pyo
[edit]
[-] traceback.pyc
[edit]
[-] SimpleXMLRPCServer.pyo
[edit]
[-] cgitb.py
[edit]
[-] mailbox.pyo
[edit]
[-] mailbox.pyc
[edit]
[-] sre_constants.py
[edit]
[-] audiodev.pyo
[edit]
[-] __future__.py
[edit]
[-] locale.pyo
[edit]
[-] Bastion.py
[edit]
[-] dircache.pyo
[edit]
[-] macpath.py
[edit]
[-] uuid.pyc
[edit]
[-] contextlib.pyo
[edit]
[-] tarfile.pyo
[edit]
[-] traceback.pyo
[edit]
[-] markupbase.py
[edit]
[-] code.pyo
[edit]
[-] pickle.pyc
[edit]
[-] pydoc.py
[edit]
[-] plistlib.pyc
[edit]
[-] abc.py
[edit]
[-] plistlib.pyo
[edit]
[-] shlex.py
[edit]
[-] csv.py
[edit]
[-] string.pyc
[edit]
[-] ssl.pyc
[edit]
[-] tempfile.pyo
[edit]
[-] UserDict.pyc
[edit]
[+]
bsddb
[-] wave.py
[edit]
[-] urlparse.py
[edit]
[-] pyclbr.pyo
[edit]
[-] cmd.py
[edit]
[+]
curses
[-] warnings.pyc
[edit]
[-] formatter.py
[edit]
[-] base64.py
[edit]
[-] tokenize.pyo
[edit]
[-] aifc.pyo
[edit]
[-] anydbm.pyo
[edit]
[-] user.pyo
[edit]
[-] sre_compile.pyc
[edit]
[-] fpformat.py
[edit]
[-] runpy.pyc
[edit]
[-] quopri.pyo
[edit]
[-] stat.py
[edit]
[-] __phello__.foo.pyc
[edit]
[-] Cookie.py
[edit]
[-] sgmllib.pyc
[edit]
[-] ntpath.pyo
[edit]
[-] urllib.py
[edit]
[-] mimify.pyo
[edit]
[-] mimetypes.pyo
[edit]
[-] ihooks.py
[edit]
[-] xmlrpclib.py
[edit]
[-] bisect.pyo
[edit]
[-] filecmp.pyc
[edit]
[-] random.pyo
[edit]
[-] types.pyc
[edit]
[-] timeit.pyc
[edit]
[-] tty.pyc
[edit]
[-] pty.pyo
[edit]
[-] tokenize.py
[edit]
[-] pickle.py
[edit]
[-] asyncore.pyo
[edit]
[-] SocketServer.pyo
[edit]
[-] sets.pyo
[edit]
[+]
Doc
[-] site.py
[edit]
[-] weakref.py
[edit]
[-] imghdr.pyc
[edit]
[+]
ensurepip
[+]
pydoc_data
[-] gzip.py
[edit]
[-] _abcoll.pyo
[edit]
[-] keyword.py
[edit]
[-] ast.pyc
[edit]
[-] contextlib.pyc
[edit]
[-] HTMLParser.pyc
[edit]
[-] copy.pyo
[edit]
[-] uuid.pyo
[edit]
[-] sysconfig.pyc
[edit]
[-] Bastion.pyo
[edit]
[-] dummy_threading.pyo
[edit]
[-] timeit.pyo
[edit]
[-] os.pyc
[edit]
[+]
email
[-] sysconfig.py
[edit]
[-] py_compile.py
[edit]
[-] cgi.py
[edit]
[-] csv.pyo
[edit]
[-] platform.pyc
[edit]
[-] stat.pyo
[edit]
[-] cmd.pyc
[edit]
[-] sysconfig.pyo
[edit]
[-] DocXMLRPCServer.pyc
[edit]
[+]
xml
[-] webbrowser.py
[edit]
[-] CGIHTTPServer.pyc
[edit]
[+]
multiprocessing
[-] pkgutil.py
[edit]
[-] symbol.pyc
[edit]
[-] repr.py
[edit]
[-] sched.py
[edit]
[-] cProfile.pyo
[edit]
[-] difflib.py
[edit]
[-] _threading_local.pyc
[edit]
[-] keyword.pyc
[edit]
[-] UserDict.pyo
[edit]
[-] os2emxpath.pyc
[edit]
[+]
test
[-] code.py
[edit]
[-] _strptime.py
[edit]
[-] platform.py
[edit]
[-] _sysconfigdata.pyc
[edit]
[-] cmd.pyo
[edit]
[-] cgitb.pyo
[edit]
[-] _sysconfigdata.pyo
[edit]
[-] wave.pyo
[edit]
[-] chunk.pyc
[edit]
[-] Bastion.pyc
[edit]
[-] _LWPCookieJar.pyo
[edit]
[-] sched.pyo
[edit]
[-] stringprep.pyc
[edit]
[-] ihooks.pyo
[edit]
[-] SimpleHTTPServer.pyc
[edit]
[-] token.pyo
[edit]
[-] markupbase.pyc
[edit]
[-] asynchat.pyo
[edit]
[-] codecs.pyo
[edit]
[-] ihooks.pyc
[edit]
[-] _threading_local.pyo
[edit]
[-] xdrlib.pyc
[edit]
[-] antigravity.py
[edit]
[-] tempfile.py
[edit]
[-] fractions.pyo
[edit]
[-] mailcap.py
[edit]
[-] fileinput.py
[edit]
[-] webbrowser.pyo
[edit]
[-] mutex.pyo
[edit]
[-] token.pyc
[edit]
[-] hmac.pyc
[edit]
[-] SimpleHTTPServer.pyo
[edit]
[-] heapq.py
[edit]
[-] atexit.pyc
[edit]
[-] xmllib.py
[edit]
[-] weakref.pyo
[edit]
[-] collections.pyo
[edit]
[-] sunaudio.py
[edit]
[-] UserString.pyc
[edit]
[-] colorsys.py
[edit]
[-] site.pyc
[edit]
[-] nntplib.pyc
[edit]
[-] subprocess.pyo
[edit]
[-] mailcap.pyo
[edit]
[-] colorsys.pyc
[edit]
[-] fileinput.pyc
[edit]
[-] aifc.pyc
[edit]
[-] md5.pyo
[edit]
[-] mutex.py
[edit]
[-] stringold.pyo
[edit]
[-] filecmp.pyo
[edit]
[-] urllib2.pyo
[edit]
[-] sets.pyc
[edit]
[-] cookielib.pyc
[edit]
[-] HTMLParser.py
[edit]
[-] urllib2.py
[edit]
[-] asyncore.py
[edit]
[-] SimpleXMLRPCServer.pyc
[edit]
[-] ssl.py
[edit]
[-] mhlib.pyc
[edit]
[-] threading.py
[edit]
[-] mailcap.pyc
[edit]
[-] codeop.pyc
[edit]
[-] Cookie.pyo
[edit]
[-] fpformat.pyc
[edit]
[-] genericpath.pyc
[edit]
[-] io.pyc
[edit]
[-] pprint.pyc
[edit]
[-] tempfile.pyc
[edit]
[-] linecache.pyo
[edit]
[-] inspect.py
[edit]
[-] SimpleXMLRPCServer.py
[edit]
[-] hashlib.pyc
[edit]
[-] optparse.pyc
[edit]
[-] pydoc.pyc
[edit]
[-] posixpath.pyo
[edit]
[-] crypt.py
[edit]
[-] argparse.py
[edit]
[-] dumbdbm.py
[edit]
[-] weakref.pyc
[edit]
[-] compileall.py
[edit]
[-] getpass.pyo
[edit]
[-] dummy_thread.pyo
[edit]
[-] toaiff.pyo
[edit]
[-] fpformat.pyo
[edit]
[-] sunau.py
[edit]
[-] _MozillaCookieJar.pyc
[edit]
[-] antigravity.pyo
[edit]
[-] rfc822.pyo
[edit]
[-] MimeWriter.py
[edit]
[-] posixpath.pyc
[edit]
[-] UserString.py
[edit]
[-] socket.pyc
[edit]
[-] UserString.pyo
[edit]
[-] ftplib.py
[edit]
[-] os2emxpath.py
[edit]
[-] numbers.pyo
[edit]
[-] opcode.pyc
[edit]
[-] whichdb.py
[edit]
[-] sunau.pyo
[edit]
[-] webbrowser.pyc
[edit]
[+]
encodings
[-] numbers.pyc
[edit]
[-] statvfs.pyo
[edit]
[-] _LWPCookieJar.pyc
[edit]
[-] quopri.pyc
[edit]
[-] telnetlib.pyo
[edit]
[-] base64.pyc
[edit]
[-] hashlib.pyo
[edit]
[-] shelve.py
[edit]
[-] anydbm.py
[edit]
[-] glob.pyo
[edit]
[-] multifile.py
[edit]
[-] io.py
[edit]
[-] chunk.py
[edit]
[-] gzip.pyo
[edit]
[-] __future__.pyc
[edit]
[-] re.pyc
[edit]
[-] sha.pyo
[edit]
[+]
json
[-] imghdr.py
[edit]
[-] copy_reg.py
[edit]
[-] SimpleHTTPServer.py
[edit]
[-] rexec.pyo
[edit]
[-] mutex.pyc
[edit]
[-] py_compile.pyc
[edit]
[-] cookielib.pyo
[edit]
[-] xmlrpclib.pyo
[edit]
[+]
Tools
[-] bdb.pyc
[edit]
[+]
plat-linux2
[-] pickle.pyo
[edit]
[-] decimal.pyc
[edit]
[-] timeit.py
[edit]
[-] sgmllib.py
[edit]
[-] locale.pyc
[edit]
[-] dummy_threading.pyc
[edit]
[-] Queue.py
[edit]
[-] cgi.pyc
[edit]
[-] __future__.pyo
[edit]
[-] StringIO.pyo
[edit]
[-] sets.py
[edit]
[-] genericpath.py
[edit]
[-] UserList.py
[edit]
[-] heapq.pyc
[edit]
[-] modulefinder.pyo
[edit]
[-] multifile.pyc
[edit]
[-] pkgutil.pyo
[edit]
[-] uuid.py
[edit]
[-] difflib.pyc
[edit]
[-] collections.py
[edit]
[-] cProfile.py
[edit]
[-] ast.py
[edit]
[-] binhex.py
[edit]
[-] functools.pyc
[edit]
[-] profile.pyc
[edit]
[-] codecs.pyc
[edit]
[+]
hotshot
[-] string.py
[edit]
[-] stringprep.pyo
[edit]
[-] HTMLParser.pyo
[edit]
[-] mimetypes.pyc
[edit]
[-] whichdb.pyc
[edit]
[-] audiodev.pyc
[edit]
[-] gettext.pyc
[edit]
[-] this.py
[edit]
[-] popen2.pyc
[edit]
[-] smtpd.py
[edit]
[-] struct.pyc
[edit]
[-] UserList.pyo
[edit]
[-] smtplib.pyo
[edit]
[-] sre_parse.pyc
[edit]
[-] fileinput.pyo
[edit]
[-] repr.pyc
[edit]
[-] Queue.pyo
[edit]
[-] shelve.pyo
[edit]
[+]
sqlite3
[-] sunaudio.pyc
[edit]
[-] _weakrefset.pyc
[edit]
[-] uu.pyc
[edit]
[-] pdb.pyc
[edit]
[-] traceback.py
[edit]
[-] commands.py
[edit]
[-] sndhdr.pyo
[edit]
[-] _MozillaCookieJar.py
[edit]
[-] mimetools.pyo
[edit]
[-] tabnanny.pyc
[edit]
[-] antigravity.pyc
[edit]
[-] mimify.pyc
[edit]
[-] sre.py
[edit]
[-] xmlrpclib.pyc
[edit]
[-] poplib.pyc
[edit]
[-] trace.pyc
[edit]
[-] pty.pyc
[edit]
[-] symtable.pyc
[edit]
[-] netrc.pyo
[edit]
[-] filecmp.py
[edit]
[-] sre_compile.pyo
[edit]
[-] bisect.pyc
[edit]
[-] urllib2.pyc
[edit]
[-] textwrap.pyo
[edit]
[-] Cookie.pyc
[edit]
[+]
lib-dynload
[-] abc.pyo
[edit]
[-] imputil.py
[edit]
[+]
Demo
[-] shutil.py
[edit]
[-] dis.py
[edit]
[-] modulefinder.py
[edit]
[-] rfc822.py
[edit]
[-] pickletools.py
[edit]
[-] htmlentitydefs.pyo
[edit]
[-] pstats.py
[edit]
[-] nturl2path.pyc
[edit]
[-] popen2.pyo
[edit]
[-] shelve.pyc
[edit]
[-] smtpd.pyo
[edit]
[-] netrc.py
[edit]
[-] cProfile.pyc
[edit]
[-] keyword.pyo
[edit]
[-] crypt.pyo
[edit]
[-] sre_constants.pyc
[edit]
[-] aifc.py
[edit]
[-] pstats.pyc
[edit]
[-] os.py
[edit]
[-] calendar.pyo
[edit]
[-] atexit.pyo
[edit]
[-] new.pyo
[edit]
[-] fnmatch.pyo
[edit]
[-] tty.py
[edit]
[-] md5.py
[edit]
[-] pdb.py
[edit]
[-] ftplib.pyo
[edit]
[-] dis.pyo
[edit]
[-] os2emxpath.pyo
[edit]
[-] cgi.pyo
[edit]
[-] profile.py
[edit]
[-] pty.py
[edit]
[-] mhlib.pyo
[edit]
[+]
importlib
[-] gzip.pyc
[edit]
[-] optparse.py
[edit]
[-] _osx_support.py
[edit]
[-] quopri.py
[edit]
[-] binhex.pyc
[edit]
[-] macurl2path.py
[edit]
[-] decimal.py
[edit]
[-] calendar.py
[edit]
[-] MimeWriter.pyc
[edit]
[-] _pyio.pyo
[edit]
[-] hmac.pyo
[edit]
[-] pickletools.pyo
[edit]
[-] warnings.pyo
[edit]
[-] doctest.pyc
[edit]
[-] modulefinder.pyc
[edit]
[-] pstats.pyo
[edit]
[-] string.pyo
[edit]
[-] mimetools.pyc
[edit]
[-] _weakrefset.pyo
[edit]
[-] struct.pyo
[edit]
[-] commands.pyc
[edit]
[-] commands.pyo
[edit]
[-] chunk.pyo
[edit]
[-] textwrap.pyc
[edit]
[-] atexit.py
[edit]
[-] codeop.py
[edit]
[-] dummy_thread.py
[edit]
[+]
lib2to3
[-] sunau.pyc
[edit]
[-] wsgiref.egg-info
[edit]
[-] StringIO.py
[edit]
[-] posixfile.pyo
[edit]
[-] warnings.py
[edit]
[-] hmac.py
[edit]
[-] struct.py
[edit]
[-] binhex.pyo
[edit]
[-] random.py
[edit]
[-] SocketServer.pyc
[edit]
[-] inspect.pyo
[edit]
[-] popen2.py
[edit]
[-] trace.py
[edit]
[-] htmlentitydefs.py
[edit]
[-] os.pyo
[edit]
[-] _abcoll.pyc
[edit]
[-] pdb.pyo
[edit]
[-] mimify.py
[edit]
[-] user.py
[edit]
[-] _strptime.pyc
[edit]
[-] new.pyc
[edit]
[-] __phello__.foo.py
[edit]
[+]
logging
[-] getpass.pyc
[edit]
[-] heapq.pyo
[edit]
[-] macpath.pyc
[edit]
[-] StringIO.pyc
[edit]
[-] pyclbr.py
[edit]
[-] robotparser.pyc
[edit]
[-] site.pyo
[edit]
[-] pydoc.pyo
[edit]
[-] copy.py
[edit]
[-] shlex.pyo
[edit]
[-] _sysconfigdata.py
[edit]
[-] pickletools.pyc
[edit]
[-] copy.pyc
[edit]
[-] stat.pyc
[edit]
[-] _LWPCookieJar.py
[edit]
[-] urlparse.pyc
[edit]
[-] imputil.pyc
[edit]
[-] sha.py
[edit]
[-] symtable.pyo
[edit]
[-] markupbase.pyo
[edit]
[-] telnetlib.pyc
[edit]
[-] repr.pyo
[edit]
[-] urlparse.pyo
[edit]
[-] copy_reg.pyc
[edit]
[-] rlcompleter.pyo
[edit]
[-] stringprep.py
[edit]
[-] pprint.py
[edit]
[-] dummy_threading.py
[edit]
[-] trace.pyo
[edit]
[-] token.py
[edit]
[-] shutil.pyo
[edit]
[-] numbers.py
[edit]
[-] xdrlib.py
[edit]
[-] statvfs.pyc
[edit]
[-] sre_parse.py
[edit]
[-] textwrap.py
[edit]
[-] tty.pyo
[edit]
[-] sunaudio.pyo
[edit]
[-] bdb.py
[edit]
[-] zipfile.pyo
[edit]
[-] pdb.doc
[edit]
[-] macurl2path.pyc
[edit]
[-] tarfile.py
[edit]
[-] bdb.pyo
[edit]
[+]
lib-tk
[-] macpath.pyo
[edit]
[-] __phello__.foo.pyo
[edit]
[-] smtpd.pyc
[edit]
[-] xmllib.pyc
[edit]
[-] io.pyo
[edit]
[-] fractions.py
[edit]
[-] _abcoll.py
[edit]
[-] CGIHTTPServer.pyo
[edit]
[-] getopt.py
[edit]
[-] httplib.pyc
[edit]
[-] compileall.pyc
[edit]
[-] mhlib.py
[edit]
[-] gettext.py
[edit]
[+]
wsgiref
[-] stringold.pyc
[edit]
[-] robotparser.pyo
[edit]
[-] re.py
[edit]
[-] posixfile.pyc
[edit]
[-] runpy.pyo
[edit]
[-] rfc822.pyc
[edit]
[-] mailbox.py
[edit]
[-] formatter.pyc
[edit]
[-] xdrlib.pyo
[edit]