From 45aa4e522954b28269abf1b250a1de1464a92748 Mon Sep 17 00:00:00 2001 From: Benjamin Peterson Date: Mon, 19 Mar 2012 20:04:55 -0400 Subject: [PATCH 1/2] remove unused import --- _pytest/assertion/rewrite.py | 1 - 1 file changed, 1 deletion(-) diff --git a/_pytest/assertion/rewrite.py b/_pytest/assertion/rewrite.py index cf295ef1b..97eeb6623 100644 --- a/_pytest/assertion/rewrite.py +++ b/_pytest/assertion/rewrite.py @@ -1,7 +1,6 @@ """Rewrite assertion AST to produce nice error messages""" import ast -import collections import errno import itertools import imp From 166aae4418562653843be537fe65e0c1465271ba Mon Sep 17 00:00:00 2001 From: Ronny Pfannschmidt Date: Thu, 22 Mar 2012 08:26:37 +0100 Subject: [PATCH 2/2] word change in the docs fixes #130 --- doc/usage.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/usage.txt b/doc/usage.txt index 0060ca747..56825c5e7 100644 --- a/doc/usage.txt +++ b/doc/usage.txt @@ -70,7 +70,7 @@ Dropping to PDB (Python Debugger) on failures .. _PDB: http://docs.python.org/library/pdb.html Python comes with a builtin Python debugger called PDB_. ``py.test`` -allows to drop into the PDB prompt via a command line option:: +allows one to drop into the PDB prompt via a command line option:: py.test --pdb