]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Comment tweak.
authorGreg Ward <gward@python.net>
Sat, 14 Aug 1999 23:47:21 +0000 (23:47 +0000)
committerGreg Ward <gward@python.net>
Sat, 14 Aug 1999 23:47:21 +0000 (23:47 +0000)
Lib/distutils/core.py

index 8a6cf7203714b882cd5ff423fc83a2debe853ccb..a9c573258a12c92a0e87cc2a67ff7ddc379b71b6 100644 (file)
@@ -166,11 +166,11 @@ class Distribution:
         # cheap to "run" a command whenever we think we might need to -- if
         # it's already been done, no need for expensive filesystem
         # operations, we just check the 'have_run' dictionary and carry on.
-        # It's only safe to query 'have_run' for a command class
-        # that has been instantiated -- a false value will be put inserted
-        # when the command object is created, and replaced with a true
-        # value when the command is succesfully run.  Thus it's
-        # probably best to use '.get()' rather than a straight lookup.
+        # It's only safe to query 'have_run' for a command class that has
+        # been instantiated -- a false value will be inserted when the
+        # command object is created, and replaced with a true value when
+        # the command is succesfully run.  Thus it's probably best to use
+        # '.get()' rather than a straight lookup.
         self.have_run = {}
 
     # __init__ ()