Commit 68f3777f authored by Kevin Modzelewski's avatar Kevin Modzelewski

These are passing

parent ffbefa1a
# expected: reffail
s = 'Hello world' s = 'Hello world'
t = buffer(s, 6, 5) t = buffer(s, 6, 5)
print t print t
......
# expected: reffail
def f(a, b): def f(a, b):
print repr(a), repr(b), "<", a < b print repr(a), repr(b), "<", a < b
print repr(a), repr(b), "<=", a <= b print repr(a), repr(b), "<=", a <= b
......
# expected: reffail
from __future__ import print_function from __future__ import print_function
import _ast import _ast
......
# expected: reffail
# This is the same as print.py, but using print as a function # This is the same as print.py, but using print as a function
# I guess print() as a function doesn't use the softspace technique. # I guess print() as a function doesn't use the softspace technique.
......
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