Skip to content

Commit

Permalink
Remove doc warnings about tornado.auth in python3
Browse files Browse the repository at this point in the history
bdarnell committed Sep 12, 2011
1 parent eb5f2ce commit b8fd0c1
Showing 2 changed files with 1 addition and 5 deletions.
4 changes: 0 additions & 4 deletions tornado/auth.py
Original file line number Diff line number Diff line change
@@ -42,10 +42,6 @@ def _on_auth(self, user):
if not user:
raise tornado.web.HTTPError(500, "Google auth failed")
# Save the user with, e.g., set_secure_cookie()
.. note::
The ``tornado.auth`` module is not yet compatible with Python 3.
"""

import base64
2 changes: 1 addition & 1 deletion website/templates/index.html
Original file line number Diff line number Diff line change
@@ -55,7 +55,7 @@ <h2>Installation</h2>
<ul>
<li>On Python 2.6 and 2.7, there are no dependencies outside the Python standard library, although <a href="http://pycurl.sourceforge.net/">PycURL</a> (version 7.18.2 or higher required; version 7.21.1 or higher recommended) may be used if desired.</li>
<li>On Python 2.5, PycURL is required, along with <a href="http://pypi.python.org/pypi/simplejson/">simplejson</a> and the Python development headers (typically obtained by installing a package named something like <code>python-dev</code> from your operating system).</li>
<li>On Python 3.2, the <a href="http://pypi.python.org/pypi/distribute">distribute</a> package is required. Note that Python 3 support is new and may have bugs; in particular the <code>tornado.auth</code> module is known not to work on Python 3.</li>
<li>On Python 3.2, the <a href="http://pypi.python.org/pypi/distribute">distribute</a> package is required. Note that Python 3 support is relatively new and may have bugs.</li>
</ul></p>

<p><b>Platforms:</b> Tornado should run on any Unix-like platform, although

0 comments on commit b8fd0c1

Please sign in to comment.