Skip to content

Commit 8e8f0cb

Browse files
committed
Clean up cruft in errors docstring.
1 parent 91bc99a commit 8e8f0cb

File tree

1 file changed

+5
-8
lines changed

1 file changed

+5
-8
lines changed

distutils/errors.py

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,9 @@
1-
"""distutils.errors
1+
"""
2+
Exceptions used by the Distutils modules.
23
3-
Provides exceptions used by the Distutils modules. Note that Distutils
4-
modules may raise standard exceptions; in particular, SystemExit is
5-
usually raised for errors that are obviously the end-user's fault
6-
(eg. bad command-line arguments).
7-
8-
This module is safe to use in "from ... import *" mode; it only exports
9-
symbols whose names start with "Distutils" and end with "Error"."""
4+
Distutils modules may raise these or standard exceptions,
5+
including :exc:`SystemExit`.
6+
"""
107

118

129
class DistutilsError(Exception):

0 commit comments

Comments
 (0)