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
6b2c893e
Commit
6b2c893e
authored
Mar 05, 2015
by
Kevin Modzelewski
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove these old warning annotations
parent
0920ed13
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
0 additions
and
8 deletions
+0
-8
test/tests/gzip_test.py
test/tests/gzip_test.py
+0
-1
test/tests/io_test.py
test/tests/io_test.py
+0
-1
test/tests/optparse_test.py
test/tests/optparse_test.py
+0
-1
test/tests/pickle_test.py
test/tests/pickle_test.py
+0
-2
test/tests/prevent_nonascii_attrs.py
test/tests/prevent_nonascii_attrs.py
+0
-1
test/tests/str_encode_decode.py
test/tests/str_encode_decode.py
+0
-1
test/tests/unicode_test.py
test/tests/unicode_test.py
+0
-1
No files found.
test/tests/gzip_test.py
View file @
6b2c893e
# allow-warning: import level 0 will be treated as -1
import
gzip
import
gzip
import
io
import
io
...
...
test/tests/io_test.py
View file @
6b2c893e
# allow-warning: import level 0 will be treated as -1
import
io
import
io
filename
=
"io_test_.txt"
filename
=
"io_test_.txt"
...
...
test/tests/optparse_test.py
View file @
6b2c893e
# allow-warning: import level 0 will be treated as -1
# Simple optparse test, taken from the optparse.py docstring:
# Simple optparse test, taken from the optparse.py docstring:
from
optparse
import
OptionParser
from
optparse
import
OptionParser
...
...
test/tests/pickle_test.py
View file @
6b2c893e
# allow-warning: import level 0 will be treated as -1
import
pickle
import
pickle
l
=
[[],
(
123
,)]
l
=
[[],
(
123
,)]
...
...
test/tests/prevent_nonascii_attrs.py
View file @
6b2c893e
# allow-warning: import level 0 will be treated as -1
# skip-if: '-x' in EXTRA_JIT_ARGS
# skip-if: '-x' in EXTRA_JIT_ARGS
def
f
(
a
):
def
f
(
a
):
...
...
test/tests/str_encode_decode.py
View file @
6b2c893e
# allow-warning: import level 0 will be treated as -1!
def
test
(
string
,
encoding
):
def
test
(
string
,
encoding
):
s
=
string
.
encode
(
encoding
)
s
=
string
.
encode
(
encoding
)
print
encoding
,
s
print
encoding
,
s
...
...
test/tests/unicode_test.py
View file @
6b2c893e
# skip-if: '-x' in EXTRA_JIT_ARGS
# skip-if: '-x' in EXTRA_JIT_ARGS
# allow-warning: import level 0 will be treated as -1
print
repr
(
unicode
())
print
repr
(
unicode
())
print
repr
(
unicode
(
'hello world'
))
print
repr
(
unicode
(
'hello world'
))
...
...
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