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
f5aa44d5
Commit
f5aa44d5
authored
Mar 23, 2016
by
Kevin Modzelewski
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[xxx] some more tests passing now
parent
9d51115e
Changes
11
Hide whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
0 additions
and
11 deletions
+0
-11
test/tests/execvpe.py
test/tests/execvpe.py
+0
-1
test/tests/fcntl_test.py
test/tests/fcntl_test.py
+0
-1
test/tests/modulefinder_test.py
test/tests/modulefinder_test.py
+0
-1
test/tests/none__class__.py
test/tests/none__class__.py
+0
-1
test/tests/operator_test.py
test/tests/operator_test.py
+0
-1
test/tests/os_path.py
test/tests/os_path.py
+0
-1
test/tests/package_test.py
test/tests/package_test.py
+0
-1
test/tests/random_test.py
test/tests/random_test.py
+0
-1
test/tests/resource_test.py
test/tests/resource_test.py
+0
-1
test/tests/subclasshook_test.py
test/tests/subclasshook_test.py
+0
-1
test/tests/tuple_iteration.py
test/tests/tuple_iteration.py
+0
-1
No files found.
test/tests/execvpe.py
View file @
f5aa44d5
# expected: reffail
# no-collect-stats
import
os
...
...
test/tests/fcntl_test.py
View file @
f5aa44d5
# expected: reffail
import
fcntl
for
k
in
sorted
(
dir
(
fcntl
)):
...
...
test/tests/modulefinder_test.py
View file @
f5aa44d5
# expected: reffail
# Make sure we can at least support people who want to register themselves with modulefinder,
# even if we don't actually support using modulefinder to find modules.
...
...
test/tests/none__class__.py
View file @
f5aa44d5
# expected: reffail
print
None
.
__class__
print
type
(
None
).
__doc__
,
None
.
__doc__
...
...
test/tests/operator_test.py
View file @
f5aa44d5
# expected: reffail
import
operator
print
operator
.
methodcaller
...
...
test/tests/os_path.py
View file @
f5aa44d5
# expected: reffail
import
os.path
print
type
(
os
)
...
...
test/tests/package_test.py
View file @
f5aa44d5
# expected: reffail
import
os
import
test_package
...
...
test/tests/random_test.py
View file @
f5aa44d5
# expected: reffail
import
random
print
type
(
random
.
random
())
test/tests/resource_test.py
View file @
f5aa44d5
# expected: reffail
import
resource
for
k
in
sorted
(
dir
(
resource
)):
...
...
test/tests/subclasshook_test.py
View file @
f5aa44d5
# expected: reffail
from
abc
import
ABCMeta
class
SubClassHook
:
...
...
test/tests/tuple_iteration.py
View file @
f5aa44d5
# expected: reffail
d
=
{}
for
i
in
xrange
(
1000
):
d
[
i
]
=
i
**
2
...
...
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