Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
P
Pyston
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Boxiang Sun
Pyston
Commits
68f3777f
Commit
68f3777f
authored
Mar 29, 2016
by
Kevin Modzelewski
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
These are passing
parent
ffbefa1a
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
1 addition
and
3 deletions
+1
-3
test/tests/buffer_test.py
test/tests/buffer_test.py
+0
-1
test/tests/comparisons.py
test/tests/comparisons.py
+1
-0
test/tests/compile_test.py
test/tests/compile_test.py
+0
-1
test/tests/print_function.py
test/tests/print_function.py
+0
-1
No files found.
test/tests/buffer_test.py
View file @
68f3777f
# expected: reffail
s
=
'Hello world'
t
=
buffer
(
s
,
6
,
5
)
print
t
...
...
test/tests/comparisons.py
View file @
68f3777f
# expected: reffail
def
f
(
a
,
b
):
print
repr
(
a
),
repr
(
b
),
"<"
,
a
<
b
print
repr
(
a
),
repr
(
b
),
"<="
,
a
<=
b
...
...
test/tests/compile_test.py
View file @
68f3777f
# expected: reffail
from
__future__
import
print_function
import
_ast
...
...
test/tests/print_function.py
View file @
68f3777f
# expected: reffail
# 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.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment