]> granicus.if.org Git - python/commitdiff
Fix a few typos
authorÉric Araujo <merwok@netwok.org>
Mon, 14 Nov 2011 17:18:15 +0000 (18:18 +0100)
committerÉric Araujo <merwok@netwok.org>
Mon, 14 Nov 2011 17:18:15 +0000 (18:18 +0100)
Doc/install/pysetup.rst
Doc/whatsnew/3.3.rst
Lib/packaging/run.py
Lib/test/regrtest.py

index f6f1f837da329f892195f152ad5a81b8cff54035..d472c248e26cc8558262a37e0c2c5a47234f941a 100644 (file)
@@ -149,7 +149,7 @@ Getting a list of all pysetup actions and global options::
        list: List installed projects
        graph: Display a graph
        create: Create a project
-       generate-setup: Generate a backward-comptatible setup.py
+       generate-setup: Generate a backward-compatible setup.py
 
    To get more help on an action, use:
 
index 7f4517ff28fd452694fef3f414a62b939480475b..7e877fc3f955d05f81f5be156786ee9ec4f6efae 100644 (file)
@@ -596,7 +596,7 @@ Other issues
    paths.  In previous versions, it did.  See changeset for doc changes in
    various files.  Contributed by Carl Meyer with editions by Éric Araujo.
 
-.. Issue #10998: -Q command-line flags are related artifacts have been
+.. Issue #10998: the -Q command-line flag and related artifacts have been
    removed.  Code checking sys.flags.division_warning will need updating.
    Contributed by Éric Araujo.
 
index 671a4bfb17b57717be2f4fd3686f40deb614f16e..4756f7c14e31e99dc088c2045aec9fbd9c2d4908 100644 (file)
@@ -368,7 +368,7 @@ actions = [
     ('list', 'List installed projects', _list),
     ('graph', 'Display a graph', _graph),
     ('create', 'Create a project', _create),
-    ('generate-setup', 'Generate a backward-comptatible setup.py', _generate),
+    ('generate-setup', 'Generate a backward-compatible setup.py', _generate),
 ]
 
 
index 9fe7bbabc7c1fc17375923fb686c29cbde539f58..03709c993fee0ac2d6914a3ddde55831f8e77bb7 100755 (executable)
@@ -1066,7 +1066,7 @@ class saved_test_environment:
         keys = set(packaging.command._COMMANDS)
         return id_, keys
     def restore_packaging_command__COMMANDS(self, saved):
-        # if command._COMMANDS was bound to another dict obhect, we can't
+        # if command._COMMANDS was bound to another dict object, we can't
         # restore the previous object and contents, because the get_ method
         # above does not return the dict object (to ignore changes in values)
         for key in packaging.command._COMMANDS.keys() - saved[1]: