summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2009-10-22 07:05:48 (GMT)
committerGeorg Brandl <georg@python.org>2009-10-22 07:05:48 (GMT)
commit0968fd679b134b8939ce40a183b15027eaca716d (patch)
treeefc697288d472130d7d446e0991d8dac3c0494fd
parent97a57ec0487826b614aeeb198f396eac4f3ab401 (diff)
downloadcpython-0968fd679b134b8939ce40a183b15027eaca716d.zip
cpython-0968fd679b134b8939ce40a183b15027eaca716d.tar.gz
cpython-0968fd679b134b8939ce40a183b15027eaca716d.tar.bz2
Fix punctuation.
-rw-r--r--Doc/library/curses.rst4
-rw-r--r--Doc/library/signal.rst2
-rw-r--r--Doc/library/weakref.rst4
-rw-r--r--Lib/ctypes/wintypes.py2
4 files changed, 6 insertions, 6 deletions
diff --git a/Doc/library/curses.rst b/Doc/library/curses.rst
index fa66d1e..6ec9abe 100644
--- a/Doc/library/curses.rst
+++ b/Doc/library/curses.rst
@@ -1,9 +1,9 @@
-
:mod:`curses` --- Terminal handling for character-cell displays
===============================================================
.. module:: curses
- :synopsis: An interface to the curses library, providing portable terminal handling.
+ :synopsis: An interface to the curses library, providing portable terminal
+ handling.
.. sectionauthor:: Moshe Zadka <moshez@zadka.site.co.il>
.. sectionauthor:: Eric Raymond <esr@thyrsus.com>
diff --git a/Doc/library/signal.rst b/Doc/library/signal.rst
index a7cf33d..32fd393 100644
--- a/Doc/library/signal.rst
+++ b/Doc/library/signal.rst
@@ -157,7 +157,7 @@ The :mod:`signal` module defines the following functions:
The old values are returned as a tuple: (delay, interval).
- Attempting to pass an invalid interval timer will cause a
+ Attempting to pass an invalid interval timer will cause an
:exc:`ItimerError`.
.. versionadded:: 2.6
diff --git a/Doc/library/weakref.rst b/Doc/library/weakref.rst
index 1c35493..d23e53a 100644
--- a/Doc/library/weakref.rst
+++ b/Doc/library/weakref.rst
@@ -77,8 +77,8 @@ support weak references but can add support through subclassing::
obj = Dict(red=1, green=2, blue=3) # this object is weak referenceable
Other built-in types such as :class:`tuple` and :class:`long` do not support
-weak references even when subclassed (This is an implementation detail and may
-be different across various Python implementations.).
+weak references even when subclassed (this is an implementation detail and may
+be different across various Python implementations).
Extension types can easily be made to support weak references; see
:ref:`weakref-support`.
diff --git a/Lib/ctypes/wintypes.py b/Lib/ctypes/wintypes.py
index dafbb78..07c6ef1 100644
--- a/Lib/ctypes/wintypes.py
+++ b/Lib/ctypes/wintypes.py
@@ -179,7 +179,7 @@ __all__ = ['ATOM', 'BOOL', 'BOOLEAN', 'BYTE', 'COLORREF', 'DOUBLE', 'DWORD',
'MSG', 'OLESTR', 'POINT', 'POINTL', 'RECT', 'RECTL', 'RGB',
'SC_HANDLE', 'SERVICE_STATUS_HANDLE', 'SHORT', 'SIZE', 'SIZEL',
'SMALL_RECT', 'UINT', 'ULARGE_INTEGER', 'ULONG', 'USHORT',
- 'VARIANT_BOOL', 'WCHAR', 'WIN32_FIND_DATAA', 'WIN32_FIND_DATAW',
+ 'WCHAR', 'WIN32_FIND_DATAA', 'WIN32_FIND_DATAW',
'WORD', 'WPARAM', '_COORD', '_FILETIME', '_LARGE_INTEGER',
'_POINTL', '_RECTL', '_SMALL_RECT', '_ULARGE_INTEGER', 'tagMSG',
'tagPOINT', 'tagRECT', 'tagSIZE']