diff options
author | Georg Brandl <georg@python.org> | 2010-12-30 22:12:40 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2010-12-30 22:12:40 (GMT) |
commit | 59b44721e37c214cb5f0288d81e7302b7622c45e (patch) | |
tree | 8d1b4770e5fddb939b0363f363f88c5401e7ef5b /Doc | |
parent | 856898b3958626d2400e59b53dc134283addc988 (diff) | |
download | cpython-59b44721e37c214cb5f0288d81e7302b7622c45e.zip cpython-59b44721e37c214cb5f0288d81e7302b7622c45e.tar.gz cpython-59b44721e37c214cb5f0288d81e7302b7622c45e.tar.bz2 |
Remove mentions of the Demo directory.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/extending/embedding.rst | 3 | ||||
-rw-r--r-- | Doc/library/curses.rst | 2 | ||||
-rw-r--r-- | Doc/library/imp.rst | 7 | ||||
-rw-r--r-- | Doc/library/tkinter.rst | 4 | ||||
-rw-r--r-- | Doc/library/tkinter.tix.rst | 6 | ||||
-rw-r--r-- | Doc/library/turtle.rst | 5 |
6 files changed, 5 insertions, 22 deletions
diff --git a/Doc/extending/embedding.rst b/Doc/extending/embedding.rst index 13a8e25..e261048 100644 --- a/Doc/extending/embedding.rst +++ b/Doc/extending/embedding.rst @@ -35,9 +35,6 @@ stdio file pointer and a file name (for identification in error messages only) to :c:func:`PyRun_SimpleFile`. You can also call the lower-level operations described in the previous chapters to construct and use Python objects. -A simple demo of embedding Python can be found in the directory -:file:`Demo/embed/` of the source distribution. - .. seealso:: diff --git a/Doc/library/curses.rst b/Doc/library/curses.rst index f9ba0d6..369571a 100644 --- a/Doc/library/curses.rst +++ b/Doc/library/curses.rst @@ -49,7 +49,7 @@ Linux and the BSD variants of Unix. Tutorial material on using curses with Python, by Andrew Kuchling and Eric Raymond. - The :file:`Demo/curses/` directory in the Python source distribution contains + The :file:`Tools/demo/` directory in the Python source distribution contains some example programs using the curses bindings provided by this module. diff --git a/Doc/library/imp.rst b/Doc/library/imp.rst index 398698f..6e9845e 100644 --- a/Doc/library/imp.rst +++ b/Doc/library/imp.rst @@ -308,10 +308,3 @@ in that version, since :func:`find_module` has been extended and # Since we may exit via an exception, close fp explicitly. if fp: fp.close() - -.. index:: module: knee - -A more complete example that implements hierarchical module names and includes a -:func:`reload` function can be found in the module :mod:`knee`. The :mod:`knee` -module can be found in :file:`Demo/imputil/` in the Python source distribution. - diff --git a/Doc/library/tkinter.rst b/Doc/library/tkinter.rst index cf92ed4..ae5635f 100644 --- a/Doc/library/tkinter.rst +++ b/Doc/library/tkinter.rst @@ -659,9 +659,7 @@ relief scrollcommand This is almost always the :meth:`!set` method of some scrollbar widget, but can - be any widget method that takes a single argument. Refer to the file - :file:`Demo/tkinter/matt/canvas-with-scrollbars.py` in the Python source - distribution for an example. + be any widget method that takes a single argument. wrap: Must be one of: ``"none"``, ``"char"``, or ``"word"``. diff --git a/Doc/library/tkinter.tix.rst b/Doc/library/tkinter.tix.rst index 68d8f5a..cc7ffd1 100644 --- a/Doc/library/tkinter.tix.rst +++ b/Doc/library/tkinter.tix.rst @@ -84,11 +84,7 @@ Tix Widgets ----------- `Tix <http://tix.sourceforge.net/dist/current/man/html/TixCmd/TixIntro.htm>`_ -introduces over 40 widget classes to the :mod:`tkinter` repertoire. There is a -demo of all the :mod:`tkinter.tix` widgets in the :file:`Demo/tix` directory of -the standard distribution. - -.. The Python sample code is still being added to Python, hence commented out +introduces over 40 widget classes to the :mod:`tkinter` repertoire. Basic Widgets diff --git a/Doc/library/turtle.rst b/Doc/library/turtle.rst index c2b9f41..4f2fbcc 100644 --- a/Doc/library/turtle.rst +++ b/Doc/library/turtle.rst @@ -2268,7 +2268,7 @@ There can be a :file:`turtle.cfg` file in the directory where :mod:`turtle` is stored and an additional one in the current working directory. The latter will override the settings of the first one. -The :file:`Demo/turtle` directory contains a :file:`turtle.cfg` file. You can +The :file:`Lib/turtledemo` directory contains a :file:`turtle.cfg` file. You can study it as an example and see its effects when running the demos (preferably not from within the demo-viewer). @@ -2400,8 +2400,7 @@ Changes since Python 3.0 strings and numbers respectively. - Two example scripts :file:`tdemo_nim.py` and :file:`tdemo_round_dance.py` - have been added to the Demo directory (source distribution only). As usual - they can be viewed and executed within the demo viewer :file:`turtleDemo.py`. + have been added to the :file:`Lib/turtledemo` directory. .. doctest:: |