Commit bfc97297 authored by Éric Araujo's avatar Éric Araujo

Fix a few typos

parent 84ed8f70
...@@ -149,7 +149,7 @@ Getting a list of all pysetup actions and global options:: ...@@ -149,7 +149,7 @@ Getting a list of all pysetup actions and global options::
list: List installed projects list: List installed projects
graph: Display a graph graph: Display a graph
create: Create a project 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: To get more help on an action, use:
......
...@@ -596,7 +596,7 @@ Other issues ...@@ -596,7 +596,7 @@ Other issues
paths. In previous versions, it did. See changeset for doc changes in paths. In previous versions, it did. See changeset for doc changes in
various files. Contributed by Carl Meyer with editions by Éric Araujo. 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. removed. Code checking sys.flags.division_warning will need updating.
Contributed by Éric Araujo. Contributed by Éric Araujo.
...@@ -368,7 +368,7 @@ actions = [ ...@@ -368,7 +368,7 @@ actions = [
('list', 'List installed projects', _list), ('list', 'List installed projects', _list),
('graph', 'Display a graph', _graph), ('graph', 'Display a graph', _graph),
('create', 'Create a project', _create), ('create', 'Create a project', _create),
('generate-setup', 'Generate a backward-comptatible setup.py', _generate), ('generate-setup', 'Generate a backward-compatible setup.py', _generate),
] ]
......
...@@ -1066,7 +1066,7 @@ class saved_test_environment: ...@@ -1066,7 +1066,7 @@ class saved_test_environment:
keys = set(packaging.command._COMMANDS) keys = set(packaging.command._COMMANDS)
return id_, keys return id_, keys
def restore_packaging_command__COMMANDS(self, saved): 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 # restore the previous object and contents, because the get_ method
# above does not return the dict object (to ignore changes in values) # above does not return the dict object (to ignore changes in values)
for key in packaging.command._COMMANDS.keys() - saved[1]: for key in packaging.command._COMMANDS.keys() - saved[1]:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment