PATH:
usr
/
share
/
doc
/
python-docs-2.7.5
/
html
/
library
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>13.6. plistlib — Generate and parse Mac OS X .plist files — Python 2.7.5 documentation</title> <link rel="stylesheet" href="../_static/default.css" type="text/css" /> <link rel="stylesheet" href="../_static/pygments.css" type="text/css" /> <script type="text/javascript"> var DOCUMENTATION_OPTIONS = { URL_ROOT: '../', VERSION: '2.7.5', COLLAPSE_INDEX: false, FILE_SUFFIX: '.html', HAS_SOURCE: true }; </script> <script type="text/javascript" src="../_static/jquery.js"></script> <script type="text/javascript" src="../_static/underscore.js"></script> <script type="text/javascript" src="../_static/doctools.js"></script> <script type="text/javascript" src="../_static/sidebar.js"></script> <link rel="search" type="application/opensearchdescription+xml" title="Search within Python 2.7.5 documentation" href="../_static/opensearch.xml"/> <link rel="author" title="About these documents" href="../about.html" /> <link rel="copyright" title="Copyright" href="../copyright.html" /> <link rel="top" title="Python 2.7.5 documentation" href="../index.html" /> <link rel="up" title="13. File Formats" href="fileformats.html" /> <link rel="next" title="14. Cryptographic Services" href="crypto.html" /> <link rel="prev" title="13.5. xdrlib — Encode and decode XDR data" href="xdrlib.html" /> <link rel="shortcut icon" type="image/png" href="../_static/py.png" /> <script type="text/javascript" src="../_static/copybutton.js"></script> </head> <body> <div class="related"> <h3>Navigation</h3> <ul> <li class="right" style="margin-right: 10px"> <a href="../genindex.html" title="General Index" accesskey="I">index</a></li> <li class="right" > <a href="../py-modindex.html" title="Python Module Index" >modules</a> |</li> <li class="right" > <a href="crypto.html" title="14. Cryptographic Services" accesskey="N">next</a> |</li> <li class="right" > <a href="xdrlib.html" title="13.5. xdrlib — Encode and decode XDR data" accesskey="P">previous</a> |</li> <li><img src="../_static/py.png" alt="" style="vertical-align: middle; margin-top: -1px"/></li> <li><a href="http://www.python.org/">Python</a> »</li> <li> <a href="../index.html">Python 2.7.5 documentation</a> » </li> <li><a href="index.html" >The Python Standard Library</a> »</li> <li><a href="fileformats.html" accesskey="U">13. File Formats</a> »</li> </ul> </div> <div class="document"> <div class="documentwrapper"> <div class="bodywrapper"> <div class="body"> <div class="section" id="module-plistlib"> <span id="plistlib-generate-and-parse-mac-os-x-plist-files"></span><h1>13.6. <a class="reference internal" href="#module-plistlib" title="plistlib: Generate and parse Mac OS X plist files."><tt class="xref py py-mod docutils literal"><span class="pre">plistlib</span></tt></a> — Generate and parse Mac OS X <tt class="docutils literal"><span class="pre">.plist</span></tt> files<a class="headerlink" href="#module-plistlib" title="Permalink to this headline">¶</a></h1> <p class="versionchanged"> <span class="versionmodified">Changed in version 2.6: </span>This module was previously only available in the Mac-specific library, it is now available for all platforms.</p> <p id="index-0"><strong>Source code:</strong> <a class="reference external" href="http://hg.python.org/cpython/file/2.7/Lib/plistlib.py">Lib/plistlib.py</a></p> <hr class="docutils" /> <p>This module provides an interface for reading and writing the “property list” XML files used mainly by Mac OS X.</p> <p>The property list (<tt class="docutils literal"><span class="pre">.plist</span></tt>) file format is a simple XML pickle supporting basic object types, like dictionaries, lists, numbers and strings. Usually the top level object is a dictionary.</p> <p>Values can be strings, integers, floats, booleans, tuples, lists, dictionaries (but only with string keys), <a class="reference internal" href="#plistlib.Data" title="plistlib.Data"><tt class="xref py py-class docutils literal"><span class="pre">Data</span></tt></a> or <a class="reference internal" href="datetime.html#datetime.datetime" title="datetime.datetime"><tt class="xref py py-class docutils literal"><span class="pre">datetime.datetime</span></tt></a> objects. String values (including dictionary keys) may be unicode strings – they will be written out as UTF-8.</p> <p>The <tt class="docutils literal"><span class="pre"><data></span></tt> plist type is supported through the <a class="reference internal" href="#plistlib.Data" title="plistlib.Data"><tt class="xref py py-class docutils literal"><span class="pre">Data</span></tt></a> class. This is a thin wrapper around a Python string. Use <a class="reference internal" href="#plistlib.Data" title="plistlib.Data"><tt class="xref py py-class docutils literal"><span class="pre">Data</span></tt></a> if your strings contain control characters.</p> <div class="admonition-see-also admonition seealso"> <p class="first admonition-title">See also</p> <dl class="last docutils"> <dt><a class="reference external" href="http://developer.apple.com/documentation/Darwin/Reference/ManPages/man5/plist.5.html">PList manual page</a></dt> <dd>Apple’s documentation of the file format.</dd> </dl> </div> <p>This module defines the following functions:</p> <dl class="function"> <dt id="plistlib.readPlist"> <tt class="descclassname">plistlib.</tt><tt class="descname">readPlist</tt><big>(</big><em>pathOrFile</em><big>)</big><a class="headerlink" href="#plistlib.readPlist" title="Permalink to this definition">¶</a></dt> <dd><p>Read a plist file. <em>pathOrFile</em> may either be a file name or a (readable) file object. Return the unpacked root object (which usually is a dictionary).</p> <p>The XML data is parsed using the Expat parser from <a class="reference internal" href="pyexpat.html#module-xml.parsers.expat" title="xml.parsers.expat: An interface to the Expat non-validating XML parser."><tt class="xref py py-mod docutils literal"><span class="pre">xml.parsers.expat</span></tt></a> – see its documentation for possible exceptions on ill-formed XML. Unknown elements will simply be ignored by the plist parser.</p> </dd></dl> <dl class="function"> <dt id="plistlib.writePlist"> <tt class="descclassname">plistlib.</tt><tt class="descname">writePlist</tt><big>(</big><em>rootObject</em>, <em>pathOrFile</em><big>)</big><a class="headerlink" href="#plistlib.writePlist" title="Permalink to this definition">¶</a></dt> <dd><p>Write <em>rootObject</em> to a plist file. <em>pathOrFile</em> may either be a file name or a (writable) file object.</p> <p>A <a class="reference internal" href="exceptions.html#exceptions.TypeError" title="exceptions.TypeError"><tt class="xref py py-exc docutils literal"><span class="pre">TypeError</span></tt></a> will be raised if the object is of an unsupported type or a container that contains objects of unsupported types.</p> </dd></dl> <dl class="function"> <dt id="plistlib.readPlistFromString"> <tt class="descclassname">plistlib.</tt><tt class="descname">readPlistFromString</tt><big>(</big><em>data</em><big>)</big><a class="headerlink" href="#plistlib.readPlistFromString" title="Permalink to this definition">¶</a></dt> <dd><p>Read a plist from a string. Return the root object.</p> </dd></dl> <dl class="function"> <dt id="plistlib.writePlistToString"> <tt class="descclassname">plistlib.</tt><tt class="descname">writePlistToString</tt><big>(</big><em>rootObject</em><big>)</big><a class="headerlink" href="#plistlib.writePlistToString" title="Permalink to this definition">¶</a></dt> <dd><p>Return <em>rootObject</em> as a plist-formatted string.</p> </dd></dl> <dl class="function"> <dt id="plistlib.readPlistFromResource"> <tt class="descclassname">plistlib.</tt><tt class="descname">readPlistFromResource</tt><big>(</big><em>path</em>, <em>restype='plst'</em>, <em>resid=0</em><big>)</big><a class="headerlink" href="#plistlib.readPlistFromResource" title="Permalink to this definition">¶</a></dt> <dd><p>Read a plist from the resource with type <em>restype</em> from the resource fork of <em>path</em>. Availability: Mac OS X.</p> <div class="admonition note"> <p class="first admonition-title">Note</p> <p class="last">In Python 3.x, this function has been removed.</p> </div> </dd></dl> <dl class="function"> <dt id="plistlib.writePlistToResource"> <tt class="descclassname">plistlib.</tt><tt class="descname">writePlistToResource</tt><big>(</big><em>rootObject</em>, <em>path</em>, <em>restype='plst'</em>, <em>resid=0</em><big>)</big><a class="headerlink" href="#plistlib.writePlistToResource" title="Permalink to this definition">¶</a></dt> <dd><p>Write <em>rootObject</em> as a resource with type <em>restype</em> to the resource fork of <em>path</em>. Availability: Mac OS X.</p> <div class="admonition note"> <p class="first admonition-title">Note</p> <p class="last">In Python 3.x, this function has been removed.</p> </div> </dd></dl> <p>The following class is available:</p> <dl class="class"> <dt id="plistlib.Data"> <em class="property">class </em><tt class="descclassname">plistlib.</tt><tt class="descname">Data</tt><big>(</big><em>data</em><big>)</big><a class="headerlink" href="#plistlib.Data" title="Permalink to this definition">¶</a></dt> <dd><p>Return a “data” wrapper object around the string <em>data</em>. This is used in functions converting from/to plists to represent the <tt class="docutils literal"><span class="pre"><data></span></tt> type available in plists.</p> <p>It has one attribute, <tt class="xref py py-attr docutils literal"><span class="pre">data</span></tt>, that can be used to retrieve the Python string stored in it.</p> </dd></dl> <div class="section" id="examples"> <h2>13.6.1. Examples<a class="headerlink" href="#examples" title="Permalink to this headline">¶</a></h2> <p>Generating a plist:</p> <div class="highlight-python"><div class="highlight"><pre><span class="n">pl</span> <span class="o">=</span> <span class="nb">dict</span><span class="p">(</span> <span class="n">aString</span><span class="o">=</span><span class="s">"Doodah"</span><span class="p">,</span> <span class="n">aList</span><span class="o">=</span><span class="p">[</span><span class="s">"A"</span><span class="p">,</span> <span class="s">"B"</span><span class="p">,</span> <span class="mi">12</span><span class="p">,</span> <span class="mf">32.1</span><span class="p">,</span> <span class="p">[</span><span class="mi">1</span><span class="p">,</span> <span class="mi">2</span><span class="p">,</span> <span class="mi">3</span><span class="p">]],</span> <span class="n">aFloat</span> <span class="o">=</span> <span class="mf">0.1</span><span class="p">,</span> <span class="n">anInt</span> <span class="o">=</span> <span class="mi">728</span><span class="p">,</span> <span class="n">aDict</span><span class="o">=</span><span class="nb">dict</span><span class="p">(</span> <span class="n">anotherString</span><span class="o">=</span><span class="s">"<hello & hi there!>"</span><span class="p">,</span> <span class="n">aUnicodeValue</span><span class="o">=</span><span class="s">u'M</span><span class="se">\xe4</span><span class="s">ssig, Ma</span><span class="se">\xdf</span><span class="s">'</span><span class="p">,</span> <span class="n">aTrueValue</span><span class="o">=</span><span class="bp">True</span><span class="p">,</span> <span class="n">aFalseValue</span><span class="o">=</span><span class="bp">False</span><span class="p">,</span> <span class="p">),</span> <span class="n">someData</span> <span class="o">=</span> <span class="n">Data</span><span class="p">(</span><span class="s">"<binary gunk>"</span><span class="p">),</span> <span class="n">someMoreData</span> <span class="o">=</span> <span class="n">Data</span><span class="p">(</span><span class="s">"<lots of binary gunk>"</span> <span class="o">*</span> <span class="mi">10</span><span class="p">),</span> <span class="n">aDate</span> <span class="o">=</span> <span class="n">datetime</span><span class="o">.</span><span class="n">datetime</span><span class="o">.</span><span class="n">fromtimestamp</span><span class="p">(</span><span class="n">time</span><span class="o">.</span><span class="n">mktime</span><span class="p">(</span><span class="n">time</span><span class="o">.</span><span class="n">gmtime</span><span class="p">())),</span> <span class="p">)</span> <span class="c"># unicode keys are possible, but a little awkward to use:</span> <span class="n">pl</span><span class="p">[</span><span class="s">u'</span><span class="se">\xc5</span><span class="s">benraa'</span><span class="p">]</span> <span class="o">=</span> <span class="s">"That was a unicode key."</span> <span class="n">writePlist</span><span class="p">(</span><span class="n">pl</span><span class="p">,</span> <span class="n">fileName</span><span class="p">)</span> </pre></div> </div> <p>Parsing a plist:</p> <div class="highlight-python"><div class="highlight"><pre><span class="n">pl</span> <span class="o">=</span> <span class="n">readPlist</span><span class="p">(</span><span class="n">pathOrFile</span><span class="p">)</span> <span class="k">print</span> <span class="n">pl</span><span class="p">[</span><span class="s">"aKey"</span><span class="p">]</span> </pre></div> </div> </div> </div> </div> </div> </div> <div class="sphinxsidebar"> <div class="sphinxsidebarwrapper"> <h3><a href="../contents.html">Table Of Contents</a></h3> <ul> <li><a class="reference internal" href="#">13.6. <tt class="docutils literal"><span class="pre">plistlib</span></tt> — Generate and parse Mac OS X <tt class="docutils literal"><span class="pre">.plist</span></tt> files</a><ul> <li><a class="reference internal" href="#examples">13.6.1. Examples</a></li> </ul> </li> </ul> <h4>Previous topic</h4> <p class="topless"><a href="xdrlib.html" title="previous chapter">13.5. <tt class="docutils literal"><span class="pre">xdrlib</span></tt> — Encode and decode XDR data</a></p> <h4>Next topic</h4> <p class="topless"><a href="crypto.html" title="next chapter">14. Cryptographic Services</a></p> <h3>This Page</h3> <ul class="this-page-menu"> <li><a href="../bugs.html">Report a Bug</a></li> <li><a href="../_sources/library/plistlib.txt" rel="nofollow">Show Source</a></li> </ul> <div id="searchbox" style="display: none"> <h3>Quick search</h3> <form class="search" action="../search.html" method="get"> <input type="text" name="q" /> <input type="submit" value="Go" /> <input type="hidden" name="check_keywords" value="yes" /> <input type="hidden" name="area" value="default" /> </form> <p class="searchtip" style="font-size: 90%"> Enter search terms or a module, class or function name. </p> </div> <script type="text/javascript">$('#searchbox').show(0);</script> </div> </div> <div class="clearer"></div> </div> <div class="related"> <h3>Navigation</h3> <ul> <li class="right" style="margin-right: 10px"> <a href="../genindex.html" title="General Index" >index</a></li> <li class="right" > <a href="../py-modindex.html" title="Python Module Index" >modules</a> |</li> <li class="right" > <a href="crypto.html" title="14. Cryptographic Services" >next</a> |</li> <li class="right" > <a href="xdrlib.html" title="13.5. xdrlib — Encode and decode XDR data" >previous</a> |</li> <li><img src="../_static/py.png" alt="" style="vertical-align: middle; margin-top: -1px"/></li> <li><a href="http://www.python.org/">Python</a> »</li> <li> <a href="../index.html">Python 2.7.5 documentation</a> » </li> <li><a href="index.html" >The Python Standard Library</a> »</li> <li><a href="fileformats.html" >13. File Formats</a> »</li> </ul> </div> <div class="footer"> © <a href="../copyright.html">Copyright</a> 1990-2019, Python Software Foundation. <br /> The Python Software Foundation is a non-profit corporation. <a href="http://www.python.org/psf/donations/">Please donate.</a> <br /> Last updated on Jul 03, 2019. <a href="../bugs.html">Found a bug</a>? <br /> Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3. </div> </body> </html>
[+]
..
[-] cookie.html
[edit]
[-] email.html
[edit]
[-] rfc822.html
[edit]
[-] mac.html
[edit]
[-] xml.etree.elementtree.html
[edit]
[-] xml.sax.html
[edit]
[-] formatter.html
[edit]
[-] rexec.html
[edit]
[-] pprint.html
[edit]
[-] crypt.html
[edit]
[-] future_builtins.html
[edit]
[-] queue.html
[edit]
[-] ipc.html
[edit]
[-] ftplib.html
[edit]
[-] doctest.html
[edit]
[-] inspect.html
[edit]
[-] multifile.html
[edit]
[-] commands.html
[edit]
[-] tk.html
[edit]
[-] mimewriter.html
[edit]
[-] i18n.html
[edit]
[-] simplehttpserver.html
[edit]
[-] msilib.html
[edit]
[-] misc.html
[edit]
[-] codecs.html
[edit]
[-] compileall.html
[edit]
[-] cd.html
[edit]
[-] nntplib.html
[edit]
[-] itertools.html
[edit]
[-] textwrap.html
[edit]
[-] urllib.html
[edit]
[-] ctypes.html
[edit]
[-] site.html
[edit]
[-] imgfile.html
[edit]
[-] statvfs.html
[edit]
[-] math.html
[edit]
[-] __builtin__.html
[edit]
[-] code.html
[edit]
[-] fpectl.html
[edit]
[-] mmap.html
[edit]
[-] shelve.html
[edit]
[-] mhlib.html
[edit]
[-] bastion.html
[edit]
[-] readline.html
[edit]
[-] resource.html
[edit]
[-] functions.html
[edit]
[-] crypto.html
[edit]
[-] argparse.html
[edit]
[-] email.mime.html
[edit]
[-] imp.html
[edit]
[-] asyncore.html
[edit]
[-] sha.html
[edit]
[-] webbrowser.html
[edit]
[-] signal.html
[edit]
[-] grp.html
[edit]
[-] undoc.html
[edit]
[-] fractions.html
[edit]
[-] sunau.html
[edit]
[-] xmlrpclib.html
[edit]
[-] dis.html
[edit]
[-] audioop.html
[edit]
[-] termios.html
[edit]
[-] base64.html
[edit]
[-] fcntl.html
[edit]
[-] poplib.html
[edit]
[-] shlex.html
[edit]
[-] gc.html
[edit]
[-] tokenize.html
[edit]
[-] xml.sax.reader.html
[edit]
[-] types.html
[edit]
[-] modulefinder.html
[edit]
[-] locale.html
[edit]
[-] unix.html
[edit]
[-] fileinput.html
[edit]
[-] bdb.html
[edit]
[-] test.html
[edit]
[-] bsddb.html
[edit]
[-] anydbm.html
[edit]
[-] sun.html
[edit]
[-] email.header.html
[edit]
[-] zipimport.html
[edit]
[-] ossaudiodev.html
[edit]
[-] importlib.html
[edit]
[-] logging.handlers.html
[edit]
[-] email.generator.html
[edit]
[-] keyword.html
[edit]
[-] sched.html
[edit]
[-] zipfile.html
[edit]
[-] random.html
[edit]
[-] debug.html
[edit]
[-] aetypes.html
[edit]
[-] gl.html
[edit]
[-] marshal.html
[edit]
[-] mailcap.html
[edit]
[-] getopt.html
[edit]
[-] urllib2.html
[edit]
[-] codeop.html
[edit]
[-] fm.html
[edit]
[-] email.errors.html
[edit]
[-] atexit.html
[edit]
[-] stringio.html
[edit]
[-] python.html
[edit]
[-] threading.html
[edit]
[-] logging.config.html
[edit]
[-] gensuitemodule.html
[edit]
[-] email.encoders.html
[edit]
[-] fnmatch.html
[edit]
[-] intro.html
[edit]
[-] compiler.html
[edit]
[-] cmd.html
[edit]
[-] glob.html
[edit]
[-] ssl.html
[edit]
[-] pydoc.html
[edit]
[-] unittest.html
[edit]
[-] copy_reg.html
[edit]
[-] io.html
[edit]
[-] array.html
[edit]
[-] contextlib.html
[edit]
[-] colorpicker.html
[edit]
[-] numbers.html
[edit]
[-] autogil.html
[edit]
[-] docxmlrpcserver.html
[edit]
[-] aifc.html
[edit]
[-] simplexmlrpcserver.html
[edit]
[-] hotshot.html
[edit]
[-] modules.html
[edit]
[-] constants.html
[edit]
[-] py_compile.html
[edit]
[-] syslog.html
[edit]
[-] optparse.html
[edit]
[-] pwd.html
[edit]
[-] pdb.html
[edit]
[-] stringprep.html
[edit]
[-] user.html
[edit]
[-] numeric.html
[edit]
[-] index.html
[edit]
[-] __main__.html
[edit]
[-] new.html
[edit]
[-] bisect.html
[edit]
[-] mimetools.html
[edit]
[-] thread.html
[edit]
[-] internet.html
[edit]
[-] timeit.html
[edit]
[-] sysconfig.html
[edit]
[-] filesys.html
[edit]
[-] datatypes.html
[edit]
[-] popen2.html
[edit]
[-] tabnanny.html
[edit]
[-] 2to3.html
[edit]
[-] select.html
[edit]
[-] copy.html
[edit]
[-] hashlib.html
[edit]
[-] filecmp.html
[edit]
[-] uuid.html
[edit]
[-] email.parser.html
[edit]
[-] restricted.html
[edit]
[-] token.html
[edit]
[-] mm.html
[edit]
[-] nis.html
[edit]
[-] warnings.html
[edit]
[-] sgi.html
[edit]
[-] windows.html
[edit]
[-] runpy.html
[edit]
[-] symbol.html
[edit]
[-] idle.html
[edit]
[-] language.html
[edit]
[-] plistlib.html
[edit]
[-] tkinter.html
[edit]
[-] parser.html
[edit]
[-] uu.html
[edit]
[-] netrc.html
[edit]
[-] heapq.html
[edit]
[-] linecache.html
[edit]
[-] tty.html
[edit]
[-] macostools.html
[edit]
[-] dummy_threading.html
[edit]
[-] csv.html
[edit]
[-] macosa.html
[edit]
[-] whichdb.html
[edit]
[-] xml.dom.minidom.html
[edit]
[-] xml.sax.handler.html
[edit]
[-] sqlite3.html
[edit]
[-] wave.html
[edit]
[-] curses.panel.html
[edit]
[-] fileformats.html
[edit]
[-] urlparse.html
[edit]
[-] binascii.html
[edit]
[-] fl.html
[edit]
[-] frameworks.html
[edit]
[-] someos.html
[edit]
[-] macpath.html
[edit]
[-] sets.html
[edit]
[-] socket.html
[edit]
[-] mutex.html
[edit]
[-] xml.html
[edit]
[-] robotparser.html
[edit]
[-] mimetypes.html
[edit]
[-] posixfile.html
[edit]
[-] imputil.html
[edit]
[-] othergui.html
[edit]
[-] archiving.html
[edit]
[-] pyexpat.html
[edit]
[-] tix.html
[edit]
[-] repr.html
[edit]
[-] aepack.html
[edit]
[-] dbm.html
[edit]
[-] xml.dom.html
[edit]
[-] mailbox.html
[edit]
[-] pkgutil.html
[edit]
[-] htmllib.html
[edit]
[-] struct.html
[edit]
[-] exceptions.html
[edit]
[-] imghdr.html
[edit]
[-] curses.ascii.html
[edit]
[-] gdbm.html
[edit]
[-] gettext.html
[edit]
[-] hmac.html
[edit]
[-] imaplib.html
[edit]
[-] email.charset.html
[edit]
[-] email-examples.html
[edit]
[-] cgitb.html
[edit]
[-] cookielib.html
[edit]
[-] os.path.html
[edit]
[-] userdict.html
[edit]
[-] binhex.html
[edit]
[-] basehttpserver.html
[edit]
[-] colorsys.html
[edit]
[-] dummy_thread.html
[edit]
[-] jpeg.html
[edit]
[-] smtplib.html
[edit]
[-] turtle.html
[edit]
[-] re.html
[edit]
[-] dircache.html
[edit]
[-] functools.html
[edit]
[-] markup.html
[edit]
[-] spwd.html
[edit]
[-] sunaudio.html
[edit]
[-] platform.html
[edit]
[-] logging.html
[edit]
[-] smtpd.html
[edit]
[-] persistence.html
[edit]
[-] macos.html
[edit]
[-] telnetlib.html
[edit]
[-] sndhdr.html
[edit]
[-] json.html
[edit]
[-] pty.html
[edit]
[-] subprocess.html
[edit]
[-] profile.html
[edit]
[-] ic.html
[edit]
[-] dbhash.html
[edit]
[-] stdtypes.html
[edit]
[-] decimal.html
[edit]
[-] sys.html
[edit]
[-] cgi.html
[edit]
[-] wsgiref.html
[edit]
[-] winsound.html
[edit]
[-] quopri.html
[edit]
[-] os.html
[edit]
[-] xml.sax.utils.html
[edit]
[-] posix.html
[edit]
[-] string.html
[edit]
[-] datetime.html
[edit]
[-] tempfile.html
[edit]
[-] multiprocessing.html
[edit]
[-] msvcrt.html
[edit]
[-] rlcompleter.html
[edit]
[-] httplib.html
[edit]
[-] cmath.html
[edit]
[-] mimify.html
[edit]
[-] stat.html
[edit]
[-] sgmllib.html
[edit]
[-] development.html
[edit]
[-] cgihttpserver.html
[edit]
[-] email.message.html
[edit]
[-] gzip.html
[edit]
[-] getpass.html
[edit]
[-] imageop.html
[edit]
[-] symtable.html
[edit]
[-] time.html
[edit]
[-] netdata.html
[edit]
[-] zlib.html
[edit]
[-] collections.html
[edit]
[-] operator.html
[edit]
[-] easydialogs.html
[edit]
[-] _winreg.html
[edit]
[-] socketserver.html
[edit]
[-] weakref.html
[edit]
[-] tarfile.html
[edit]
[-] carbon.html
[edit]
[-] strings.html
[edit]
[-] distutils.html
[edit]
[-] difflib.html
[edit]
[-] email.util.html
[edit]
[-] shutil.html
[edit]
[-] pickletools.html
[edit]
[-] curses.html
[edit]
[-] ast.html
[edit]
[-] aetools.html
[edit]
[-] allos.html
[edit]
[-] pickle.html
[edit]
[-] calendar.html
[edit]
[-] configparser.html
[edit]
[-] chunk.html
[edit]
[-] email.iterators.html
[edit]
[-] trace.html
[edit]
[-] asynchat.html
[edit]
[-] __future__.html
[edit]
[-] pyclbr.html
[edit]
[-] al.html
[edit]
[-] dl.html
[edit]
[-] miniaeframe.html
[edit]
[-] abc.html
[edit]
[-] errno.html
[edit]
[-] xml.dom.pulldom.html
[edit]
[-] xdrlib.html
[edit]
[-] scrolledtext.html
[edit]
[-] framework.html
[edit]
[-] md5.html
[edit]
[-] unicodedata.html
[edit]
[-] ttk.html
[edit]
[-] fpformat.html
[edit]
[-] htmlparser.html
[edit]
[-] custominterp.html
[edit]
[-] dumbdbm.html
[edit]
[-] bz2.html
[edit]
[-] pipes.html
[edit]
[-] traceback.html
[edit]