From: Georg Brandl Date: Thu, 22 Oct 2009 07:05:48 +0000 (+0000) Subject: Fix punctuation. X-Git-Tag: v2.7a1~289 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0968fd679b134b8939ce40a183b15027eaca716d;p=python Fix punctuation. --- diff --git a/Doc/library/curses.rst b/Doc/library/curses.rst index fa66d1efa1..6ec9abee25 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 .. sectionauthor:: Eric Raymond diff --git a/Doc/library/signal.rst b/Doc/library/signal.rst index a7cf33d03a..32fd3938aa 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 1c35493c2e..d23e53a531 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 dafbb78b78..07c6ef1ca9 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']