summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorJack Jansen <jack.jansen@cwi.nl>2003-02-10 16:08:17 (GMT)
committerJack Jansen <jack.jansen@cwi.nl>2003-02-10 16:08:17 (GMT)
commit8d326b8581e8246d006bd4c5ab1d9f30972ef5cb (patch)
tree249efb8ce6a94cb6882e12c20f082bf894cd8d07 /Lib
parentf6c9ba845730edc187cdcfcd84abb889adf8386f (diff)
downloadcpython-8d326b8581e8246d006bd4c5ab1d9f30972ef5cb.zip
cpython-8d326b8581e8246d006bd4c5ab1d9f30972ef5cb.tar.gz
cpython-8d326b8581e8246d006bd4c5ab1d9f30972ef5cb.tar.bz2
Punctuation fixes in docstrings.
Diffstat (limited to 'Lib')
-rw-r--r--Lib/plat-mac/pimp.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/Lib/plat-mac/pimp.py b/Lib/plat-mac/pimp.py
index 2f6ec22..5365095 100644
--- a/Lib/plat-mac/pimp.py
+++ b/Lib/plat-mac/pimp.py
@@ -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 = []