[Python-checkins] cpython: Remove mention of medical condition from the test suite.

Jim Jewett jimjjewett at gmail.com
Tue Jul 5 00:27:33 CEST 2011


If you're going to get rid of the pun, you might as well change the
whole sentence...

On Sun, Jul 3, 2011 at 1:22 PM, georg.brandl <python-checkins at python.org> wrote:
> http://hg.python.org/cpython/rev/76452b892838
> changeset:   71146:76452b892838
> parent:      71144:ce52310f61a0
> user:        Georg Brandl <georg at python.org>
> date:        Sun Jul 03 19:22:42 2011 +0200
> summary:
>  Remove mention of medical condition from the test suite.
>
> files:
>  Lib/test/test_csv.py |  8 ++++----
>  1 files changed, 4 insertions(+), 4 deletions(-)
>
>
> diff --git a/Lib/test/test_csv.py b/Lib/test/test_csv.py
> --- a/Lib/test/test_csv.py
> +++ b/Lib/test/test_csv.py
> @@ -459,20 +459,20 @@
>                                  '5', '6']])
>
>     def test_quoted_quote(self):
> -        self.readerAssertEqual('1,2,3,"""I see,"" said the blind man","as he picked up his hammer and saw"',
> +        self.readerAssertEqual('1,2,3,"""I see,"" said the happy man","as he picked up his hammer and saw"',
>                                [['1', '2', '3',
> -                                 '"I see," said the blind man',
> +                                 '"I see," said the happy man',
>                                  'as he picked up his hammer and saw']])
>
>     def test_quoted_nl(self):
>         input = '''\
>  1,2,3,"""I see,""
> -said the blind man","as he picked up his
> +said the happy man","as he picked up his
>  hammer and saw"
>  9,8,7,6'''
>         self.readerAssertEqual(input,
>                                [['1', '2', '3',
> -                                   '"I see,"\nsaid the blind man',
> +                                   '"I see,"\nsaid the happy man',
>                                    'as he picked up his\nhammer and saw'],
>                                 ['9','8','7','6']])
>
>
> --
> Repository URL: http://hg.python.org/cpython
>
> _______________________________________________
> Python-checkins mailing list
> Python-checkins at python.org
> http://mail.python.org/mailman/listinfo/python-checkins
>
>


More information about the Python-checkins mailing list