diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2013-10-13 20:27:23 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2013-10-13 20:27:23 (GMT) |
commit | 72aabb61778a10acc1ad394e5e518db301034579 (patch) | |
tree | 048e61e1729b295da0c75e85fec9177fffb1d398 /Doc | |
parent | bfdcd436f0410e2b3eb34ce4fd7411488d3f13fb (diff) | |
parent | 810f1d56ea4802399377662ea9a92e8f122da298 (diff) | |
download | cpython-72aabb61778a10acc1ad394e5e518db301034579.zip cpython-72aabb61778a10acc1ad394e5e518db301034579.tar.gz cpython-72aabb61778a10acc1ad394e5e518db301034579.tar.bz2 |
Merge heads
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/othergui.rst | 3 | ||||
-rw-r--r-- | Doc/tools/sphinx-build.py | 2 |
2 files changed, 2 insertions, 3 deletions
diff --git a/Doc/library/othergui.rst b/Doc/library/othergui.rst index ae5d0db..eb49b99 100644 --- a/Doc/library/othergui.rst +++ b/Doc/library/othergui.rst @@ -19,8 +19,7 @@ available for Python: `PyGTK <http://www.pygtk.org/>`_ provides bindings for an older version of the library, GTK+ 2. It provides an object oriented interface that is slightly higher level than the C one. There are also bindings to - `GNOME <http://www.gnome.org>`_. One well known PyGTK application is - `WingIDE <http://wingide.com/>`_. An online `tutorial + `GNOME <http://www.gnome.org>`_. An online `tutorial <http://www.pygtk.org/pygtk2tutorial/index.html>`_ is available. `PyQt <http://www.riverbankcomputing.co.uk/software/pyqt/>`_ diff --git a/Doc/tools/sphinx-build.py b/Doc/tools/sphinx-build.py index 91be6f0..a446dfa 100644 --- a/Doc/tools/sphinx-build.py +++ b/Doc/tools/sphinx-build.py @@ -15,7 +15,7 @@ warnings.filterwarnings('ignore', category=UserWarning, module='jinja2') if __name__ == '__main__': - if sys.version_info[:3] < (2, 4, 0): + if sys.version_info[:3] < (2, 4, 0) or sys.version_info[:3] > (3, 0, 0): sys.stderr.write("""\ Error: Sphinx needs to be executed with Python 2.4 or newer (not 3.0 though). (If you run this from the Makefile, you can set the PYTHON variable |