/usr/share/doc/python-gevent-doc/html/reference.html is in python-gevent-doc 1.0-1ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 | <!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" dir="ltr">
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8"/>
<title>API reference — gevent 1.0 documentation</title>
<link rel="stylesheet" href="_static/basic.css" type="text/css" />
<link rel="stylesheet" href="_static/pygments.css" type="text/css" />
<link rel="top" title="gevent 1.0 documentation" href="index.html" />
<link rel="next" title="gevent – basic utilities" href="gevent.html" />
<link rel="prev" title="Introduction" href="intro.html" />
</head>
<body>
<div id="site-wrapper">
<div id="header">
<div id="top">
<div class="left" id="logo">
<h1><a id="title" href="/">gevent</a></h1>
</div>
<div class="left navigation" id="main-nav">
<ul class="tabbed">
<li><a href="http://blog.gevent.org">Blog</a></li>
<li><a href="https://github.com/surfly/gevent">Code</a></li>
<li class="current-tab"><a href="/contents.html">Docs</a></li>
<li><a href="http://pypi.python.org/pypi/gevent#downloads">Download</a></li>
<li><a href="/community.html">Mailing list</a></li>
<li><a href="https://github.com/surfly/gevent/issues">Issues</a></li>
<li><a href="http://webchat.freenode.net/?channels=gevent" rel="nofollow">IRC</a></li>
<li><a href="/sfc.html">Donate</a></li>
</ul>
<div class="clearer"> </div>
</div>
<div class="clearer"> </div>
</div>
</div>
<div id="splash">
<div class="col3big left">
<div class="document">
<div class="documentwrapper">
<div class="bodywrapper">
<div class="body">
<div class="section" id="api-reference">
<h1>API reference<a class="headerlink" href="#api-reference" title="Permalink to this headline">¶</a></h1>
<div class="toctree-wrapper compound">
<ul>
<li class="toctree-l1"><a class="reference internal" href="gevent.html"><tt class="docutils literal"><span class="pre">gevent</span></tt> – basic utilities</a><ul>
<li class="toctree-l2"><a class="reference internal" href="gevent.html#greenlet-objects">Greenlet objects</a></li>
<li class="toctree-l2"><a class="reference internal" href="gevent.html#spawn-helpers">Spawn helpers</a></li>
<li class="toctree-l2"><a class="reference internal" href="gevent.html#useful-general-functions">Useful general functions</a></li>
<li class="toctree-l2"><a class="reference internal" href="gevent.html#timeouts">Timeouts</a></li>
<li class="toctree-l2"><a class="reference internal" href="gevent.html#waiting">Waiting</a></li>
</ul>
</li>
<li class="toctree-l1"><a class="reference internal" href="networking.html">Networking interfaces</a><ul>
<li class="toctree-l2"><a class="reference internal" href="gevent.socket.html"><tt class="docutils literal"><span class="pre">gevent.socket</span></tt> – Cooperative socket module</a></li>
<li class="toctree-l2"><a class="reference internal" href="gevent.ssl.html"><tt class="docutils literal"><span class="pre">gevent.ssl</span></tt> – SSL wrapper for socket objects</a></li>
<li class="toctree-l2"><a class="reference internal" href="gevent.select.html"><tt class="docutils literal"><span class="pre">gevent.select</span></tt></a></li>
</ul>
</li>
<li class="toctree-l1"><a class="reference internal" href="synchronization.html">Synchronization primitives</a><ul>
<li class="toctree-l2"><a class="reference internal" href="gevent.event.html"><tt class="docutils literal"><span class="pre">gevent.event</span></tt> – Basic synchronization primitives: Event and AsyncResult</a></li>
<li class="toctree-l2"><a class="reference internal" href="gevent.queue.html"><tt class="docutils literal"><span class="pre">gevent.queue</span></tt> – Synchronized queues</a></li>
<li class="toctree-l2"><a class="reference internal" href="gevent.lock.html"><tt class="docutils literal"><span class="pre">gevent.lock</span></tt> – Locking primitives</a></li>
</ul>
</li>
<li class="toctree-l1"><a class="reference internal" href="gevent.pool.html"><tt class="docutils literal"><span class="pre">gevent.pool</span></tt> – Managing greenlets in a group</a></li>
<li class="toctree-l1"><a class="reference internal" href="servers.html">Implementing servers</a><ul>
<li class="toctree-l2"><a class="reference internal" href="gevent.server.html"><tt class="docutils literal"><span class="pre">gevent.server</span></tt> – TCP/SSL server</a></li>
<li class="toctree-l2"><a class="reference internal" href="gevent.pywsgi.html"><tt class="docutils literal"><span class="pre">gevent.pywsgi</span></tt></a></li>
<li class="toctree-l2"><a class="reference internal" href="gevent.wsgi.html"><tt class="docutils literal"><span class="pre">gevent.wsgi</span></tt></a></li>
</ul>
</li>
<li class="toctree-l1"><a class="reference internal" href="gevent.local.html"><tt class="docutils literal"><span class="pre">gevent.local</span></tt> – Greenlet-local objects</a></li>
<li class="toctree-l1"><a class="reference internal" href="gevent.monkey.html"><tt class="docutils literal"><span class="pre">gevent.monkey</span></tt> – Make the standard library cooperative</a></li>
<li class="toctree-l1"><a class="reference internal" href="gevent.backdoor.html"><tt class="docutils literal"><span class="pre">gevent.backdoor</span></tt></a></li>
</ul>
</div>
</div>
<p><strong>Next page: <a href="gevent.html" title="next chapter"><tt class="docutils literal"><span class="pre">gevent</span></tt> – basic utilities</a></strong></p>
</div>
</div>
</div>
</div>
</div>
<div class="col3 right">
<div class="body">
<div class="sphinxsidebar">
<div class="sphinxsidebarwrapper">
<h4 class="label label-blue"><a href="contents.html">Navigation</a></h4>
<ul>
<li>Next: <a href="gevent.html" title="next chapter"><tt class="docutils literal"><span class="pre">gevent</span></tt> – basic utilities</a></li>
<li>Previous: <a href="intro.html" title="previous chapter">Introduction</a></li>
</ul>
<h4 class="label label-orange">Related pages</h4>
<ul>
<li><a href="https://github.com/surfly/gevent/tree/master/examples"
title="Browse gevent/examples in the development repository">Code examples</a></li>
</ul>
</div>
</div>
</div>
</div>
<div class="clearer"> </div>
</div>
<div id="footer">
<div class="left" id="footer-left">
<p><a href="http://denisbilenko.com" class="quiet-link">© 2009-2013 Denis Bilenko</a></p>
<div class="clearer"> </div>
</div>
<div class="right" id="footer-right">
<p class="large"><a href="http://blog.gevent.org">Blog</a> <span class="text-separator">|</span> <a href="https://github.com/surfly/gevent">Code</a> <span class="text-separator">|</span> <a href="/contents.html">Docs</a> <span class="text-separator">|</span> <a href="http://pypi.python.org/pypi/gevent">Download</a> <span class="text-separator">|</span> <a href="/community.html">Mailing list</a> <span class="text-separator">|</span> <a href="https://github.com/surfly/gevent/issues">Issue tracker</a> <span class="text-separator">|</span> <a href="http://webchat.freenode.net/?channels=gevent" rel="nofollow">IRC</a> <span class="text-separator">|</span> <a href="#top" class="quiet">Page Top ↑</a></p>
</div>
<div class="clearer"> </div>
</div>
</div>
</body>
</html>
|