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
a7c5cfcb
Commit
a7c5cfcb
authored
Mar 03, 2015
by
Kevin Modzelewski
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove these test annotations now that the underlying issue is addressed
parent
4a690b37
Changes
20
Hide whitespace changes
Inline
Side-by-side
Showing
20 changed files
with
1 addition
and
32 deletions
+1
-32
test/tests/collections_test.py
test/tests/collections_test.py
+0
-2
test/tests/file_writing.py
test/tests/file_writing.py
+0
-2
test/tests/fork.py
test/tests/fork.py
+0
-1
test/tests/generator_tracebacks.py
test/tests/generator_tracebacks.py
+0
-2
test/tests/import_failure_test.py
test/tests/import_failure_test.py
+0
-2
test/tests/optparse_test.py
test/tests/optparse_test.py
+0
-1
test/tests/os_path.py
test/tests/os_path.py
+0
-2
test/tests/os_test.py
test/tests/os_test.py
+1
-1
test/tests/pickle_test.py
test/tests/pickle_test.py
+0
-1
test/tests/pwd_test.py
test/tests/pwd_test.py
+0
-2
test/tests/random_test.py
test/tests/random_test.py
+0
-2
test/tests/socket_test.py
test/tests/socket_test.py
+0
-1
test/tests/str_encode_decode.py
test/tests/str_encode_decode.py
+0
-1
test/tests/subprocess_test.py
test/tests/subprocess_test.py
+0
-2
test/tests/sys_test.py
test/tests/sys_test.py
+0
-2
test/tests/tempfile_test.py
test/tests/tempfile_test.py
+0
-2
test/tests/thread_forking.py
test/tests/thread_forking.py
+0
-1
test/tests/thread_spawning.py
test/tests/thread_spawning.py
+0
-2
test/tests/traceback_limits.py
test/tests/traceback_limits.py
+0
-1
test/tests/tracebacks_test.py
test/tests/tracebacks_test.py
+0
-2
No files found.
test/tests/collections_test.py
View file @
a7c5cfcb
# allow-warning: converting unicode literal to str
import
collections
o
=
collections
.
OrderedDict
()
...
...
test/tests/file_writing.py
View file @
a7c5cfcb
# allow-warning: converting unicode literal to str
import
os
import
tempfile
...
...
test/tests/fork.py
View file @
a7c5cfcb
# no-collect-stats
# allow-warning: converting unicode literal to str
from
thread
import
start_new_thread
import
time
...
...
test/tests/generator_tracebacks.py
View file @
a7c5cfcb
# allow-warning: converting unicode literal to str
# Generators participate in the notional Python stack just like normal function calls do,
# even if we implement them using separate C stacks.
#
...
...
test/tests/import_failure_test.py
View file @
a7c5cfcb
# allow-warning: converting unicode literal to str
try
:
import
non_existent_module
assert
0
,
"shouldn't get here"
...
...
test/tests/optparse_test.py
View file @
a7c5cfcb
# allow-warning: converting unicode literal to str
# allow-warning: import level 0 will be treated as -1
# Simple optparse test, taken from the optparse.py docstring:
...
...
test/tests/os_path.py
View file @
a7c5cfcb
# allow-warning: converting unicode literal to str
import
os.path
print
type
(
os
)
...
...
test/tests/os_test.py
View file @
a7c5cfcb
#
allow-warning: converting unicode literal to str
#
# currently broken:
# import os.path
...
...
test/tests/pickle_test.py
View file @
a7c5cfcb
# allow-warning: converting unicode literal to str
# allow-warning: import level 0 will be treated as -1
import
pickle
...
...
test/tests/pwd_test.py
View file @
a7c5cfcb
# allow-warning: converting unicode literal to str
import
pwd
import
os
print
pwd
.
getpwuid
(
os
.
getuid
())[
5
]
==
os
.
environ
[
"HOME"
]
test/tests/random_test.py
View file @
a7c5cfcb
# allow-warning: converting unicode literal to str
import
random
print
type
(
random
.
random
())
test/tests/socket_test.py
View file @
a7c5cfcb
# allow-warning: converting unicode literal to str
import
socket
s
=
socket
.
socket
()
...
...
test/tests/str_encode_decode.py
View file @
a7c5cfcb
# allow-warning: converting unicode literal to str
# allow-warning: import level 0 will be treated as -1!
def
test
(
string
,
encoding
):
s
=
string
.
encode
(
encoding
)
...
...
test/tests/subprocess_test.py
View file @
a7c5cfcb
# allow-warning: converting unicode literal to str
import
subprocess
subprocess
.
check_call
([
"true"
])
...
...
test/tests/sys_test.py
View file @
a7c5cfcb
# allow-warning: converting unicode literal to str
import
sys
import
os.path
...
...
test/tests/tempfile_test.py
View file @
a7c5cfcb
# allow-warning: converting unicode literal to str
import
os
import
tempfile
...
...
test/tests/thread_forking.py
View file @
a7c5cfcb
# skip-if: '-n' in EXTRA_JIT_ARGS or '-O' in EXTRA_JIT_ARGS
# allow-warning: converting unicode literal to str
# Make sure that we can fork from a threaded environment
#
...
...
test/tests/thread_spawning.py
View file @
a7c5cfcb
# allow-warning: converting unicode literal to str
# Make sure we can spawn a bunch of threads
import
threading
...
...
test/tests/traceback_limits.py
View file @
a7c5cfcb
# allow-warning: converting unicode literal to str
# expected: fail
# - we don't stop tracebacks at the catching except handler. this is hard do the way it gets added to
# (ie a bare "raise" statement will add more traceback entries to the traceback it raises)
...
...
test/tests/tracebacks_test.py
View file @
a7c5cfcb
# allow-warning: converting unicode literal to str
# A test of both the tracebacks we generate and the tracebacks module
#
# (We keep fixing tracebacks in one case to break them in another, so it's time for a test.)
...
...
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