[Python-checkins] r75592 - in python/trunk: Doc/library/curses.rst Doc/library/signal.rst Doc/library/weakref.rst Lib/ctypes/wintypes.py

georg.brandl python-checkins at python.org
Thu Oct 22 09:05:48 CEST 2009


Author: georg.brandl
Date: Thu Oct 22 09:05:48 2009
New Revision: 75592

Log:
Fix punctuation.

Modified:
   python/trunk/Doc/library/curses.rst
   python/trunk/Doc/library/signal.rst
   python/trunk/Doc/library/weakref.rst
   python/trunk/Lib/ctypes/wintypes.py

Modified: python/trunk/Doc/library/curses.rst
==============================================================================
--- python/trunk/Doc/library/curses.rst	(original)
+++ python/trunk/Doc/library/curses.rst	Thu Oct 22 09:05:48 2009
@@ -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 at zadka.site.co.il>
 .. sectionauthor:: Eric Raymond <esr at thyrsus.com>
 

Modified: python/trunk/Doc/library/signal.rst
==============================================================================
--- python/trunk/Doc/library/signal.rst	(original)
+++ python/trunk/Doc/library/signal.rst	Thu Oct 22 09:05:48 2009
@@ -157,7 +157,7 @@
 
    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

Modified: python/trunk/Doc/library/weakref.rst
==============================================================================
--- python/trunk/Doc/library/weakref.rst	(original)
+++ python/trunk/Doc/library/weakref.rst	Thu Oct 22 09:05:48 2009
@@ -77,8 +77,8 @@
    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`.

Modified: python/trunk/Lib/ctypes/wintypes.py
==============================================================================
--- python/trunk/Lib/ctypes/wintypes.py	(original)
+++ python/trunk/Lib/ctypes/wintypes.py	Thu Oct 22 09:05:48 2009
@@ -179,7 +179,7 @@
            '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']


More information about the Python-checkins mailing list