fix sentence

This commit is contained in:
Benjamin Peterson 2011-05-24 17:28:20 -05:00
parent 9c4f6791e5
commit 993efe927b
1 changed files with 2 additions and 2 deletions

View File

@ -87,8 +87,8 @@ class AssertionRewriter(ast.NodeVisitor):
if not mod.body: if not mod.body:
# Nothing to do. # Nothing to do.
return return
# Insert some special imports at top but after any docstrings and # Insert some special imports at the top of the module but after any
# __future__ imports. # docstrings and __future__ imports.
aliases = [ast.alias(py.builtin.builtins.__name__, "@py_builtins"), aliases = [ast.alias(py.builtin.builtins.__name__, "@py_builtins"),
ast.alias("py", "@pylib"), ast.alias("py", "@pylib"),
ast.alias("_pytest.assertrewrite", "@pytest_ar")] ast.alias("_pytest.assertrewrite", "@pytest_ar")]