From 6cf253f0799970f6e7c86ba18cec6e1231dbe493 Mon Sep 17 00:00:00 2001 From: "Jason R. Coombs" Date: Tue, 28 May 2013 11:52:53 -0400 Subject: Add support for Python 3.3 in environment marker tests --- tests/api_tests.txt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'tests') 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 -- cgit v1.2.3