diff options
| author | Berker Peksag <berker.peksag@gmail.com> | 2015-04-14 06:35:51 (GMT) |
|---|---|---|
| committer | Berker Peksag <berker.peksag@gmail.com> | 2015-04-14 06:35:51 (GMT) |
| commit | dfa4e045a363fd1dd31c1d57002fc78c10de85a2 (patch) | |
| tree | 3f044e4d37129fb3dd70d1535cad09c2f78d9563 /Lib/test/test_doctest.py | |
| parent | a468db9b0bd8d17575923b91db5fbc4a222d4252 (diff) | |
| parent | 4882cacab6bcaf90ac496fc8878987598e7665c1 (diff) | |
| download | cpython-dfa4e045a363fd1dd31c1d57002fc78c10de85a2.zip cpython-dfa4e045a363fd1dd31c1d57002fc78c10de85a2.tar.gz cpython-dfa4e045a363fd1dd31c1d57002fc78c10de85a2.tar.bz2 | |
Issue #23943: Fix typos. Patch by Piotr Kasprzyk.
Diffstat (limited to 'Lib/test/test_doctest.py')
| -rw-r--r-- | Lib/test/test_doctest.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/test_doctest.py b/Lib/test/test_doctest.py index 665272f..bbe5a13 100644 --- a/Lib/test/test_doctest.py +++ b/Lib/test/test_doctest.py @@ -2174,7 +2174,7 @@ def test_DocTestSuite(): ... AttributeError: module 'test.test_doctest' has no attribute 'sillySetup' - The setUp and tearDown funtions are passed test objects. Here + The setUp and tearDown functions are passed test objects. Here we'll use the setUp function to supply the missing variable y: >>> def setUp(test): @@ -2320,7 +2320,7 @@ def test_DocFileSuite(): ... AttributeError: module 'test.test_doctest' has no attribute 'sillySetup' - The setUp and tearDown funtions are passed test objects. + The setUp and tearDown functions are passed test objects. Here, we'll use a setUp function to set the favorite color in test_doctest.txt: |
