From: Ben Darnell
Date: Tue, 28 Jun 2011 06:40:01 +0000 (-0700)
Subject: Document the auth module's lack of python3 support
X-Git-Tag: v2.1.0~13^2~1
X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ae12bccf04056b192da62bd0bbc32c11155b8179;p=thirdparty%2Ftornado.git
Document the auth module's lack of python3 support
---
diff --git a/tornado/auth.py b/tornado/auth.py
index 91a29519b..8df24f882 100644
--- a/tornado/auth.py
+++ b/tornado/auth.py
@@ -43,6 +43,9 @@ Example usage for Google OpenID::
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
diff --git a/website/templates/index.html b/website/templates/index.html
index 0a194fcfe..d71875d6f 100644
--- a/website/templates/index.html
+++ b/website/templates/index.html
@@ -55,7 +55,7 @@ sudo python setup.py install
- On Python 2.6 and 2.7, there are no dependencies outside the Python standard library, although PycURL (version 7.18.2 or higher required; version 7.21.1 or higher recommended) may be used if desired.
- On Python 2.5, PycURL is required, along with simplejson and the Python development headers (typically obtained by installing a package named something like
python-dev
from your operating system).
- - On Python 3.2, the distribute package is required.
+ - On Python 3.2, the distribute package is required. Note that Python 3 support is new and may have bugs; in particular the
tornado.auth
module is known not to work on Python 3.
Platforms: Tornado should run on any Unix-like platform, although