Skip to content

Commit 72aabb6

Browse files
Merge heads
2 parents bfdcd43 + 810f1d5 commit 72aabb6

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

Doc/library/othergui.rst

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,7 @@ available for Python:
1919
`PyGTK <http://www.pygtk.org/>`_ provides bindings for an older version
2020
of the library, GTK+ 2. It provides an object oriented interface that
2121
is slightly higher level than the C one. There are also bindings to
22-
`GNOME <http://www.gnome.org>`_. One well known PyGTK application is
23-
`WingIDE <http://wingide.com/>`_. An online `tutorial
22+
`GNOME <http://www.gnome.org>`_. An online `tutorial
2423
<http://www.pygtk.org/pygtk2tutorial/index.html>`_ is available.
2524

2625
`PyQt <http://www.riverbankcomputing.co.uk/software/pyqt/>`_

Doc/tools/sphinx-build.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
if __name__ == '__main__':
1717

18-
if sys.version_info[:3] < (2, 4, 0):
18+
if sys.version_info[:3] < (2, 4, 0) or sys.version_info[:3] > (3, 0, 0):
1919
sys.stderr.write("""\
2020
Error: Sphinx needs to be executed with Python 2.4 or newer (not 3.0 though).
2121
(If you run this from the Makefile, you can set the PYTHON variable

0 commit comments

Comments
 (0)