Commit 6cf253f0 authored by Jason R. Coombs's avatar Jason R. Coombs

Add support for Python 3.3 in environment marker tests

parent fb7c407b
...@@ -341,8 +341,8 @@ Environment Markers ...@@ -341,8 +341,8 @@ Environment Markers
>>> print(im("sys_platform")) >>> print(im("sys_platform"))
Comparison or logical expression expected Comparison or logical expression expected
>>> print(im("sys_platform==")) >>> print(im("sys_platform==")) # doctest: +ELLIPSIS
unexpected EOF while parsing (line 1) unexpected EOF while parsing (...line 1)
>>> print(im("sys_platform=='win32'")) >>> print(im("sys_platform=='win32'"))
False False
...@@ -353,8 +353,8 @@ Environment Markers ...@@ -353,8 +353,8 @@ Environment Markers
>>> print(im("(extra)")) >>> print(im("(extra)"))
Comparison or logical expression expected Comparison or logical expression expected
>>> print(im("(extra")) >>> print(im("(extra")) # doctest: +ELLIPSIS
unexpected EOF while parsing (line 1) unexpected EOF while parsing (...line 1)
>>> print(im("os.open('foo')=='y'")) >>> print(im("os.open('foo')=='y'"))
Language feature not supported in environment markers Language feature not supported in environment markers
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment