summaryrefslogtreecommitdiffstats
path: root/Lib/distutils/core.py
diff options
context:
space:
mode:
authorGreg Ward <gward@python.net>1999-08-14 23:47:21 (GMT)
committerGreg Ward <gward@python.net>1999-08-14 23:47:21 (GMT)
commit7f65c65208243bd4c48f0ce02756b361e1c36149 (patch)
tree0a15d9d0c292db5b874aff6fcaf6c69e1fdaa8b4 /Lib/distutils/core.py
parent0081cc529ccf205a3a8c40375848b51caae9537b (diff)
downloadcpython-7f65c65208243bd4c48f0ce02756b361e1c36149.zip
cpython-7f65c65208243bd4c48f0ce02756b361e1c36149.tar.gz
cpython-7f65c65208243bd4c48f0ce02756b361e1c36149.tar.bz2
Comment tweak.
Diffstat (limited to 'Lib/distutils/core.py')
-rw-r--r--Lib/distutils/core.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/Lib/distutils/core.py b/Lib/distutils/core.py
index 8a6cf72..a9c5732 100644
--- a/Lib/distutils/core.py
+++ b/Lib/distutils/core.py
@@ -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__ ()