summaryrefslogtreecommitdiff
path: root/python/subunit/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/subunit/__init__.py')
-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