diff options
| author | Jason R. Coombs <jaraco@jaraco.com> | 2013-05-28 11:52:53 -0400 |
|---|---|---|
| committer | Jason R. Coombs <jaraco@jaraco.com> | 2013-05-28 11:52:53 -0400 |
| commit | 93f751cfb5dd77049c5d7e902adc7992de28e7bd (patch) | |
| tree | 20ce1a5581beac259d8201cf712aaffee6d6f2a7 /tests/api_tests.txt | |
| parent | 2425c8f7f811441638923e4b33d12a53e9cb142c (diff) | |
| download | python-setuptools-bitbucket-93f751cfb5dd77049c5d7e902adc7992de28e7bd.tar.gz | |
Add support for Python 3.3 in environment marker tests
Diffstat (limited to 'tests/api_tests.txt')
| -rw-r--r-- | tests/api_tests.txt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/api_tests.txt b/tests/api_tests.txt index 364b3d6f..d03da14e 100644 --- a/tests/api_tests.txt +++ b/tests/api_tests.txt @@ -341,8 +341,8 @@ Environment Markers >>> print(im("sys_platform")) Comparison or logical expression expected - >>> print(im("sys_platform==")) - unexpected EOF while parsing (line 1) + >>> print(im("sys_platform==")) # doctest: +ELLIPSIS + unexpected EOF while parsing (...line 1) >>> print(im("sys_platform=='win32'")) False @@ -353,8 +353,8 @@ Environment Markers >>> print(im("(extra)")) Comparison or logical expression expected - >>> print(im("(extra")) - unexpected EOF while parsing (line 1) + >>> print(im("(extra")) # doctest: +ELLIPSIS + unexpected EOF while parsing (...line 1) >>> print(im("os.open('foo')=='y'")) Language feature not supported in environment markers |
