diff options
Diffstat (limited to 'Doc/library')
-rw-r--r-- | Doc/library/objects.rst | 2 | ||||
-rw-r--r-- | Doc/library/othergui.rst | 6 | ||||
-rw-r--r-- | Doc/library/stdtypes.rst | 2 | ||||
-rw-r--r-- | Doc/library/turtle.rst | 2 |
4 files changed, 6 insertions, 6 deletions
diff --git a/Doc/library/objects.rst b/Doc/library/objects.rst index a0e66d1..1b75161 100644 --- a/Doc/library/objects.rst +++ b/Doc/library/objects.rst @@ -16,7 +16,7 @@ Names for built-in exceptions and functions and a number of constants are found in a separate symbol table. This table is searched last when the interpreter looks up the meaning of a name, so local and global user-defined names can override built-in names. Built-in types are described together here for easy -reference. [#]_ +reference. The tables in this chapter document the priorities of operators by listing them in order of ascending priority (within a table) and grouping operators that have diff --git a/Doc/library/othergui.rst b/Doc/library/othergui.rst index 91b59e0..5a84285 100644 --- a/Doc/library/othergui.rst +++ b/Doc/library/othergui.rst @@ -63,14 +63,14 @@ also available for Python: `wxPython <http://www.wxpython.org>`_ wxPython is a cross-platform GUI toolkit for Python that is built around the popular `wxWidgets <http://www.wxwidgets.org/>`_ (formerly wxWindows) - C++ toolkit. It provides a native look and feel for applications on + C++ toolkit. It provides a native look and feel for applications on Windows, Mac OS X, and Unix systems by using each platform's native - widgets where ever possible, (GTK+ on Unix-like systems). In addition to + widgets where ever possible, (GTK+ on Unix-like systems). In addition to an extensive set of widgets, wxPython provides classes for online documentation and context sensitive help, printing, HTML viewing, low-level device context drawing, drag and drop, system clipboard access, an XML-based resource format and more, including an ever growing library - of user-contributed modules. wxPython has a book, `wxPython in Action + of user-contributed modules. wxPython has a book, `wxPython in Action <http://www.amazon.com/exec/obidos/ASIN/1932394621>`_, by Noel Rappin and Robin Dunn. diff --git a/Doc/library/stdtypes.rst b/Doc/library/stdtypes.rst index 6822e7e..6dd374f 100644 --- a/Doc/library/stdtypes.rst +++ b/Doc/library/stdtypes.rst @@ -608,7 +608,7 @@ Notes: (5) The slice of *s* from *i* to *j* with step *k* is defined as the sequence of - items with index ``x = i + n*k`` such that 0 ≤n < (j-i)/(k). In other words, + items with index ``x = i + n*k`` such that ``0 <= n < (j-i)/k``. In other words, the indices are ``i``, ``i+k``, ``i+2*k``, ``i+3*k`` and so on, stopping when *j* is reached (but never including *j*). If *i* or *j* is greater than ``len(s)``, use ``len(s)``. If *i* or *j* are omitted or ``None``, they become diff --git a/Doc/library/turtle.rst b/Doc/library/turtle.rst index b772c88..8ad3b61 100644 --- a/Doc/library/turtle.rst +++ b/Doc/library/turtle.rst @@ -285,5 +285,5 @@ corresponding to a full circle: .. method:: Turtle.degrees([fullcircle]) *fullcircle* is by default 360. This can cause the pen to have any angular units - whatever: give *fullcircle* 2\*$π for radians, or 400 for gradians. + whatever: give *fullcircle* ``2*pi`` for radians, or 400 for gradians. |