]> granicus.if.org Git - python/commitdiff
Punctuation fixes in docstrings.
authorJack Jansen <jack.jansen@cwi.nl>
Mon, 10 Feb 2003 16:08:17 +0000 (16:08 +0000)
committerJack Jansen <jack.jansen@cwi.nl>
Mon, 10 Feb 2003 16:08:17 +0000 (16:08 +0000)
Lib/plat-mac/pimp.py

index 2f6ec22e30bcb8dfdc7f01f338f50553db84737e..53650951ee6b404600a1b54515c8255938fecc40 100644 (file)
@@ -43,13 +43,13 @@ ARCHIVE_FORMATS = [
 ]
 
 class MyURLopener(urllib.FancyURLopener):
-       """Like FancyURLOpener, but we do want to get errors as exceptions"""
+       """Like FancyURLOpener, but we do want to get errors as exceptions."""
        def http_error_default(self, url, fp, errcode, errmsg, headers):
                urllib.URLopener.http_error_default(self, url, fp, errcode, errmsg, headers)
 
 class PimpPreferences:
        """Container for per-user preferences, such as the database to use
-       and where to install packages"""
+       and where to install packages."""
        
        def __init__(self, 
                        flavorOrder=None,
@@ -119,7 +119,7 @@ class PimpDatabase:
        """Class representing a pimp database. It can actually contain
        information from multiple databases through inclusion, but the
        toplevel database is considered the master, as its maintainer is
-       "responsible" for the contents"""
+       "responsible" for the contents."""
        
        def __init__(self, prefs):
                self._packages = []