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
0033228c
Commit
0033228c
authored
Aug 06, 2015
by
Kevin Modzelewski
Committed by
Kevin Modzelewski
Aug 06, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bunch of tests are getting farther
parent
d1729101
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
8 additions
and
16 deletions
+8
-16
from_cpython/Lib/test/test_doctest2.py
from_cpython/Lib/test/test_doctest2.py
+0
-1
from_cpython/Lib/test/test_getopt.py
from_cpython/Lib/test/test_getopt.py
+0
-1
from_cpython/Lib/test/test_sets.py
from_cpython/Lib/test/test_sets.py
+0
-1
from_cpython/Lib/test/test_unpack.py
from_cpython/Lib/test/test_unpack.py
+0
-1
test/CPYTHON_TEST_NOTES.md
test/CPYTHON_TEST_NOTES.md
+8
-12
No files found.
from_cpython/Lib/test/test_doctest2.py
View file @
0033228c
# expected: fail
# -*- coding: utf-8 -*-
u"""A module to test whether doctest recognizes some 2.2 features,
like static and class methods.
...
...
from_cpython/Lib/test/test_getopt.py
View file @
0033228c
# expected: fail
# test_getopt.py
# David Goodger <dgoodger@bigfoot.com> 2000-08-19
...
...
from_cpython/Lib/test/test_sets.py
View file @
0033228c
# expected: fail
import
unittest
,
operator
,
copy
,
pickle
,
random
from
test
import
test_support
...
...
from_cpython/Lib/test/test_unpack.py
View file @
0033228c
# expected: fail
doctests
=
"""
Unpack tuple
...
...
test/CPYTHON_TEST_NOTES.md
View file @
0033228c
...
...
@@ -21,7 +21,7 @@ test_augassign missing oldstyle-class __add__, __iadd__, etc
test_bisect somehow sys.modules['_bisect'] is getting set to 0
test_builtin execfile scoping issue
test_coercion 1**1L, divmod(1, 1L); some unknown bug
test_collections
doctest (dies in inspect.getmodule(
))
test_collections
assertion failed when doing vars(collections.namedtuple('Point', 'x y')(11, 12
))
test_compare "AssertionError: 2 != 0.0j"
test_complex need complex.__nonzero__
test_contextlib lock.locked attributes
...
...
@@ -30,15 +30,14 @@ test_decimal I think we need to copy decimaltestdata from cpython
test_decorators decorator bug -- we evaluate decorator obj and its args in wrong order
test_deque couple unknown issues
test_descr wontfix: crashes at "self.__dict__ = self"
test_descrtut
doctest (dies in inspect.getmodule())
test_descrtut
`exec in DefaultDict()`
test_dict need to handle repr of recursive structures (ie `d = {}; d['self'] = d; print d`)
test_dictcomps we need to disallow assigning to dictcomps
test_dictviews various unique bugs
test_doctest doctest (dies in inspect.getmodule())
test_doctest2 doctest (sys.displayhook)
test_doctest hard to know. also missing some input files
test_enumerate assert instead of exception in BoxedEnumerate
test_exceptions we are missing recursion-depth checking
test_extcall
doctest (syss.displayhook())
test_extcall
f(**kw) crashes if kw isn't a dict
test_file wontfix: we don't destruct file objects when the test wants
test_file2k we abort when you try to open() a directory
test_file_eintr not sure
...
...
@@ -46,9 +45,8 @@ test_float float(long), a couple unknown things
test_format float(long)
test_funcattrs we don't allow changing numing of function defaults
test_functools unknown errors
test_generators doctest (sys.displayhook)
test_genexps doctest (sys.displayhook)
test_getopt doctest (sys.displayhook)
test_generators crash when sending non-None to a just-started generator
test_genexps parser not raising a SyntaxError when assigning to a genexp
test_global SyntaxWarnings for global statements after uses
test_grammar bug in our tokenizer
test_hash number of hash bugs (all representations of '1' don't have the same hash; empty string is supposed to have 0 hash, etc)
...
...
@@ -72,8 +70,7 @@ test_repr complex.__hash__; some unknown issues
test_richcmp PyObject_Not
test_scope eval of code object from existing function (not currently supported)
test_set weird function-picking issue
test_setcomps doctest (sys.displayhook)
test_sets doctest (sys.displayhook)
test_setcomps parser not raising a SyntaxError when assigning to a setcomp
test_slice segfault
test_sort argument specification issue in listSort?
test_str memory leak?
...
...
@@ -86,8 +83,7 @@ test_undocumented_details function.func_closure
test_unicode argument passing issue?
test_unicode_file exit code 139, no error message
test_unittest serialize_ast assert
test_unpack doctest (sys.displayhook)
test_urllib2 doctest (dies in inspect.getmodule())
test_urllib2 segfault due to attrwrapper corruption
test_userdict segfault: repr of recursive dict?
test_userlist slice(1L, 1L)
test_userstring float(1L); hangs in test_replace
...
...
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