summaryrefslogtreecommitdiff
path: root/docutils/docs/dev/testing.txt
diff options
context:
space:
mode:
authorwiemann <wiemann@929543f6-e4f2-0310-98a6-ba3bd3dd1d04>2004-07-27 20:48:52 +0000
committerwiemann <wiemann@929543f6-e4f2-0310-98a6-ba3bd3dd1d04>2004-07-27 20:48:52 +0000
commit3b2d3385d5903d2cdcbc5375a61933cb35eccf38 (patch)
tree47ba795246d77a0d30b17c0a2e2011096e87d86c /docutils/docs/dev/testing.txt
parent7db97749a0b8eaf6b39ea5df18e4e125d0045dfb (diff)
downloaddocutils-3b2d3385d5903d2cdcbc5375a61933cb35eccf38.tar.gz
fix for backslash
git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk@2483 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
Diffstat (limited to 'docutils/docs/dev/testing.txt')
-rw-r--r--docutils/docs/dev/testing.txt12
1 files changed, 6 insertions, 6 deletions
diff --git a/docutils/docs/dev/testing.txt b/docutils/docs/dev/testing.txt
index f35ef221a..5941f0de6 100644
--- a/docutils/docs/dev/testing.txt
+++ b/docutils/docs/dev/testing.txt
@@ -27,12 +27,12 @@ Setting Up For Testing
Recent versions of Python's ``unittest.py`` module have an annoying
new "feature", where newlines in test failure output are displayed as
-"\n" (two characters) instead of as actual newlines. This means that
-test failure output is unreadable and unuseable. Earlier versions
-didn't have this feature, and the output could easily be copied and
-pasted into test data modules. Revision `1.7.2.1 of unittest.py`__
-works well. Download it, place it in the ``test/`` directory, and
-enjoy much better output.
+``\n`` (two characters) instead of as actual newlines. This means
+that test failure output is unreadable and unuseable. Earlier
+versions didn't have this feature, and the output could easily be
+copied and pasted into test data modules. Revision `1.7.2.1 of
+unittest.py`__ works well. Download it, place it in the ``test/``
+directory, and enjoy much better output.
__ http://cvs.sf.net/viewcvs.py/*checkout*/python/python/dist/src/Lib/unittest.py?rev=1.7.2.1