summaryrefslogtreecommitdiffstats
path: root/Doc/library/unittest.rst
diff options
context:
space:
mode:
authorEzio Melotti <ezio.melotti@gmail.com>2009-12-19 22:41:49 (GMT)
committerEzio Melotti <ezio.melotti@gmail.com>2009-12-19 22:41:49 (GMT)
commit062d2b52f3128f44bfd853459652e075c9bb5f40 (patch)
tree03333e785a3f66a58bae613ccbcedcefa1dc1de6 /Doc/library/unittest.rst
parent98a24def0337ad62038667d71043a40a14d9ea72 (diff)
downloadcpython-062d2b52f3128f44bfd853459652e075c9bb5f40.zip
cpython-062d2b52f3128f44bfd853459652e075c9bb5f40.tar.gz
cpython-062d2b52f3128f44bfd853459652e075c9bb5f40.tar.bz2
#7388: "python".capitalize() in the Doc
Diffstat (limited to 'Doc/library/unittest.rst')
-rw-r--r--Doc/library/unittest.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/unittest.rst b/Doc/library/unittest.rst
index 4de6829..460b2f3 100644
--- a/Doc/library/unittest.rst
+++ b/Doc/library/unittest.rst
@@ -199,7 +199,7 @@ qualified class or method names.
You can run tests with more detail (higher verbosity) by passing in the -v flag::
- python-m unittest -v test_module
+ python -m unittest -v test_module
For a list of all the command line options::
@@ -1600,7 +1600,7 @@ name then the package :file:`__init__.py` will be checked for ``load_tests``.
.. note::
- The default pattern is 'test*.py'. This matches all python files
+ The default pattern is 'test*.py'. This matches all Python files
that start with 'test' but *won't* match any test directories.
A pattern like 'test*' will match test packages as well as