aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Lib/distutils/command/clean.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/distutils/command/clean.py')
-rw-r--r--Lib/distutils/command/clean.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/Lib/distutils/command/clean.py b/Lib/distutils/command/clean.py
index 90ef35f1ca7..0cb27016621 100644
--- a/Lib/distutils/command/clean.py
+++ b/Lib/distutils/command/clean.py
@@ -4,8 +4,6 @@ Implements the Distutils 'clean' command."""
# contributed by Bastian Kleineidam <calvin@cs.uni-sb.de>, added 2000-03-18
-__revision__ = "$Id$"
-
import os
from distutils.core import Command
from distutils.dir_util import remove_tree
@@ -76,5 +74,3 @@ class clean(Command):
log.info("removing '%s'", self.build_base)
except OSError:
pass
-
-# class clean