summaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
authorRobert Collins <robertc@robertcollins.net>2008-12-13 15:29:46 +1100
committerRobert Collins <robertc@robertcollins.net>2008-12-13 15:29:46 +1100
commit0c09f4a34ac3d4f75292306839709bc18762f8ac (patch)
tree0b931e8827caebf58477be575e4d76fa559c5918 /python
parent24ec56b54f6bb1b1d1d13a8314213c7c68902514 (diff)
downloadsubunit-git-0c09f4a34ac3d4f75292306839709bc18762f8ac.tar.gz
Review feedback from jml.
Diffstat (limited to 'python')
-rw-r--r--python/subunit/__init__.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/python/subunit/__init__.py b/python/subunit/__init__.py
index bf1e0cc..b2b5129 100644
--- a/python/subunit/__init__.py
+++ b/python/subunit/__init__.py
@@ -1,5 +1,5 @@
#
-# subunit: extensions to python unittest to get test results from subprocesses.
+# subunit: extensions to Python unittest to get test results from subprocesses.
# Copyright (C) 2005 Robert Collins <robertc@robertcollins.net>
#
# This program is free software; you can redistribute it and/or modify
@@ -220,7 +220,7 @@ class TestProtocolServer(object):
class RemoteException(Exception):
- """An exception that occured remotely to python."""
+ """An exception that occured remotely to Python."""
def __eq__(self, other):
try:
@@ -268,7 +268,7 @@ def RemoteError(description=""):
class RemotedTestCase(unittest.TestCase):
"""A class to represent test cases run in child processes.
- Instances of this class are used to provide the python test API a TestCase
+ Instances of this class are used to provide the Python test API a TestCase
that can be printed to the screen, introspected for metadata and so on.
However, as they are a simply a memoisation of a test that was actually
run in the past by a separate process, they cannot perform any interactive