Commit 0033228c authored by Kevin Modzelewski's avatar Kevin Modzelewski Committed by Kevin Modzelewski

Bunch of tests are getting farther

parent d1729101
# expected: fail
# -*- coding: utf-8 -*-
u"""A module to test whether doctest recognizes some 2.2 features,
like static and class methods.
......
# expected: fail
# test_getopt.py
# David Goodger <dgoodger@bigfoot.com> 2000-08-19
......
# expected: fail
import unittest, operator, copy, pickle, random
from test import test_support
......
# expected: fail
doctests = """
Unpack tuple
......
......@@ -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
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment