summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJosip Djolonga <devnull@localhost>2010-06-15 18:23:15 +0200
committerJosip Djolonga <devnull@localhost>2010-06-15 18:23:15 +0200
commit00dad0ae25eab889c08e898336c06e4e5cae5483 (patch)
tree80562dad79b48a6b45a83f73c31cca64a769ca2d /src
parent71e47978eb37c82484a6ab7c6405c604bb3fa46c (diff)
downloaddisutils2-00dad0ae25eab889c08e898336c06e4e5cae5483.tar.gz
Added the module-level docstrings
Diffstat (limited to 'src')
-rw-r--r--src/distutils2/_backport/pkgutil.py2
-rw-r--r--src/distutils2/depgraph.py4
2 files changed, 5 insertions, 1 deletions
diff --git a/src/distutils2/_backport/pkgutil.py b/src/distutils2/_backport/pkgutil.py
index bcdd38f..5a7e40d 100644
--- a/src/distutils2/_backport/pkgutil.py
+++ b/src/distutils2/_backport/pkgutil.py
@@ -1,4 +1,4 @@
-# Utilities to support packages.
+""" Utilities to support packages. """
# NOTE: This module must remain compatible with Python 2.3, as it is shared
# by setuptools for distribution with Python 2.3 and up.
diff --git a/src/distutils2/depgraph.py b/src/distutils2/depgraph.py
index 7841b77..48b5743 100644
--- a/src/distutils2/depgraph.py
+++ b/src/distutils2/depgraph.py
@@ -1,3 +1,7 @@
+"""Analyse the relationships between the distributions in the system and generate
+a dependency graph.
+"""
+
from distutils2.errors import DistutilsError
from distutils2.version import VersionPredicate