Commit 8daa8537 authored by Kevin Modzelewski's avatar Kevin Modzelewski

Annotate the files that are failing

parent e2e8a9f9
# expected: fail
from test.test_support import run_unittest
from _locale import (setlocale, LC_NUMERIC, localeconv, Error)
try:
......
# expected: fail
# Copyright (C) 2003 Python Software Foundation
import unittest
......
# expected: fail
from test.test_support import (findfile, TESTFN, unlink, captured_stdout,
run_unittest)
import unittest
......
# expected: fail
"""Whimpy test script for the al module
Roger E. Masse
"""
......
# expected: fail
# Copyright (C) 2003 Python Software Foundation
import unittest
......
# expected: fail
# Author: Steven J. Bethard <steven.bethard@gmail.com>.
import codecs
......
# expected: fail
"""Test the arraymodule.
Roger E. Masse
"""
......
# expected: fail
# PyOS_ascii_formatd is deprecated and not called from anywhere in
# Python itself. So this module is the only place it gets tested.
# Test that it works, and test that it's deprecated.
......
# expected: fail
import sys, itertools, unittest
from test import test_support
import ast
......
# expected: fail
# test asynchat
import asyncore, asynchat, socket, time
......
# expected: fail
import asyncore
import unittest
import select
......
# expected: fail
import sys
import unittest
import StringIO
......
# expected: fail
import audioop
import sys
import unittest
......
# expected: fail
import unittest
from test import test_support
import base64
......
# expected: fail
from test import test_support
from test.test_support import bigmemtest, _1G, _2G, _4G, precisionbigmemtest
......
# expected: fail
"""Test script for the bsddb C module by Roger E. Masse
Adapted to unittest format and expanded scope by Raymond Hettinger
"""
......
# expected: fail
"""Tests for the bsddb185 module.
The file 185test.db found in Lib/test/ is for testing purposes with this
......
# expected: fail
# Test driver for bsddb package.
"""
Run all test cases.
......
# expected: fail
from test import test_support
from test.test_support import TESTFN, _4G, bigmemtest, import_module, findfile
......
# expected: fail
# Run the _testcapi module tests (tests for the Python/C API): by defn,
# these are all functions _testcapi exports whose name begins with 'test_'.
......
# expected: fail
"""Whimpy test script for the cd module
Roger E. Masse
"""
......
# expected: fail
import ConfigParser
import StringIO
import os
......
# expected: fail
from test.test_support import run_unittest, check_warnings
import cgi
import os
......
# expected: fail
"""Whimpy test script for the cl module
Roger E. Masse
"""
......
# expected: fail
from test.test_support import run_unittest
from test.test_math import parse_testfile, test_file
import unittest
......
# expected: fail
# Tests invocation of the interpreter with various command line arguments
# All tests are executed with environment variables ignored
# See test_cmd_line_script.py for testing of script execution
......
# expected: fail
# Tests command line execution of scripts
import unittest
......
# expected: fail
"""This module includes tests of the code object representation.
>>> def f(x):
......
# expected: fail
#
# test_codecencodings_cn.py
# Codec encoding tests for PRC encodings.
......
# expected: fail
#
# test_codecencodings_hk.py
# Codec encoding tests for HongKong encodings.
......
# expected: fail
# Codec encoding tests for ISO 2022 encodings.
from test import test_support
......
# expected: fail
#
# test_codecencodings_jp.py
# Codec encoding tests for Japanese encodings.
......
# expected: fail
#
# test_codecencodings_kr.py
# Codec encoding tests for ROK encodings.
......
# expected: fail
#
# test_codecencodings_tw.py
# Codec encoding tests for ROC encodings.
......
# expected: fail
#
# test_codecmaps_cn.py
# Codec mapping tests for PRC encodings
......
# expected: fail
#
# test_codecmaps_hk.py
# Codec mapping tests for HongKong encodings
......
# expected: fail
#
# test_codecmaps_jp.py
# Codec mapping tests for Japanese encodings
......
# expected: fail
#
# test_codecmaps_kr.py
# Codec mapping tests for ROK encodings
......
# expected: fail
#
# test_codecmaps_tw.py
# Codec mapping tests for ROC encodings
......
# expected: fail
from test import test_support
import unittest
import codecs
......
# expected: fail
"""
Test cases for codeop.py
Nick Mathewson
......
# expected: fail
import test.test_support, unittest
import os
......
# expected: fail
import unittest
import sys
import _ast
......
# expected: fail
import compileall
import imp
import os
......
# expected: fail
import test.test_support
compiler = test.test_support.import_module('compiler', deprecated=True)
from compiler.ast import flatten
......
# expected: fail
"""Unit tests for contextlib.py, and other context managers."""
import sys
......
# expected: fail
# Simple test suite for Cookie.py
from test.test_support import run_unittest, run_doctest, check_warnings
......
# expected: fail
"""Unit tests for the copy module."""
import copy
......
# expected: fail
import cPickle
import cStringIO
import io
......
# expected: fail
"""Test suite for the cProfile module."""
import sys
......
# expected: fail
from test import test_support
import unittest
......
# expected: fail
# -*- coding: iso-8859-1 -*-
# Copyright (C) 2001,2002 Python Software Foundation
# csv package unit tests
......
# expected: fail
import unittest
from test.test_support import run_unittest, import_module
......
# expected: fail
#
# Test script for the curses module
#
......
# expected: fail
from test import test_support
import unittest
dbm = test_support.import_module('dbm')
......
# expected: fail
import difflib
from test.test_support import run_unittest, findfile
import unittest
......
# expected: fail
# Minimal tests for dis module
from test.test_support import run_unittest
......
# expected: fail
"""Tests for distutils.
The tests for distutils are defined in the distutils.tests package;
......
# expected: fail
"""Test dlmodule.c
Roger E. Masse revised strategy by Barry Warsaw
"""
......
# expected: fail
from DocXMLRPCServer import DocXMLRPCServer
import httplib
import sys
......
# expected: fail
"""Test script for the dumbdbm module
Original by Roger E. Masse
"""
......
# expected: fail
# Copyright (C) 2001,2002 Python Software Foundation
# email package unit tests
......
# expected: fail
# Copyright (C) 2002 Python Software Foundation
# email package unit tests for (optional) Asian codecs
......
# expected: fail
# Copyright (C) 2001-2006 Python Software Foundation
# email package unit tests
......
# expected: fail
"""test script for a few new invalid token catches"""
import unittest
......
# expected: fail
# Adapted from test_file.py by Daniel Stutzbach
from __future__ import unicode_literals
......
# expected: fail
"""This test checks for correct fork() behavior.
"""
......
# expected: fail
"""Tests for Lib/fractions.py."""
from decimal import Decimal
......
# expected: fail
# Test the frozen module defined in frozen.c.
from test.test_support import captured_stdout, run_unittest
......
# expected: fail
"""Test script for ftplib module."""
# Modified by Giampaolo Rodola' to test FTP class, IPv6 and TLS
......
# expected: fail
# Test various flavors of legal and illegal future statements
import unittest
......
# expected: fail
# Check that multiple features can be enabled.
from __future__ import unicode_literals, print_function
......
# expected: fail
import unittest
from test.test_support import verbose, run_unittest
import sys
......
# expected: fail
# Verify that gdb can pretty-print the various PyObject* types
#
# The code for testing gdb was adapted from similar work in Unladen Swallow's
......
# expected: fail
import unittest
import os
from test.test_support import TESTFN, run_unittest, unlink, import_module
......
# expected: fail
import unittest
from test import test_support
# Skip this test if the _testcapi module isn't available.
......
# expected: fail
"""Very simple test script for the SGI gl library extension module
taken mostly from the documentation.
Roger E. Masse
......
# expected: fail
# Test hashlib module
#
# $Id$
......
# expected: fail
"""Unittests for heapq."""
import sys
......
# expected: fail
import os
import pprint
import unittest
......
# expected: fail
import httplib
import array
import httplib
......
# expected: fail
"""Unittests for the various HTTPServer modules.
Written by Cody A.W. Somerville <cody-somerville@ubuntu.com>,
......
# expected: fail
import unittest
from test import test_support as support
from test.test_support import import_module
......
# expected: fail
"""Test script for the imageop module. This has the side
effect of partially testing the imgfile module as well.
Roger E. Masse
......
# expected: fail
from test import test_support as support
# If we end up with a significant number of tests that don't require
# threading, this test module should be split. Right now we skip
......
# expected: fail
"""Simple test script for imgfile.c
Roger E. Masse
"""
......
# expected: fail
import imp
import unittest
from test import test_support
......
# expected: fail
import errno
import imp
import marshal
......
# expected: fail
import sys
import imp
import os
......
# expected: fail
import re
import sys
import types
......
# expected: fail
"""
Tests for kqueue wrapper.
"""
......
# expected: fail
# Skipping test_parser and test_all_fixers
# because of running
from lib2to3.tests import (test_fixers, test_pytree, test_util, test_refactor,
......
# expected: fail
from test import test_support
test_support.requires('audio')
......
# expected: fail
from test.test_support import run_unittest, verbose
import unittest
import locale
......
# expected: fail
from __future__ import division
# When true division is the default, get rid of this and add it to
# test_long.py instead. In the meantime, it's too obscure to try to
......
# expected: fail
import unittest
from test import test_support
......
# expected: fail
import unittest
from test import test_support
import os
......
# expected: fail
# Copyright (C) 2003 Python Software Foundation
import unittest
......
# expected: fail
import os
import sys
import time
......
# expected: fail
# -*- coding: iso-8859-1 -*-
from test import test_support
......
# expected: fail
"""Unit tests for memory-based file-like objects.
StringIO -- for unicode strings
BytesIO -- for bytes
......
# expected: fail
"""Unit tests for the memoryview
XXX We need more tests! Some tests are in test_bytes
......
# expected: fail
# test for xml.dom.minidom
import pickle
......
# expected: fail
import __future__
import os
import unittest
......
# expected: fail
""" Test suite for the code in msilib """
import unittest
import os
......
# expected: fail
# test_multibytecodec.py
# Unit test for multibytecodec itself
#
......
# expected: fail
#
# Unit tests for the multiprocessing package
#
......
# expected: fail
import unittest
from test import test_support
import sys
......
# expected: fail
from test import test_support
import unittest
......
# expected: fail
# This set of tests exercises the backward-compatibility class
# in mailbox.py (the ones without write support).
......
# expected: fail
# As a test suite for the os module, this is woefully inadequate, but this
# does add tests for a few functions which have been determined to be more
# portable than they had been thought to be.
......
# expected: fail
from test import test_support
test_support.requires('audio')
......
# expected: fail
import parser
import unittest
import sys
......
# expected: fail
# A test suite for pdb; at the moment, this only validates skipping of
# specified test modules (RFE #5142).
......
# expected: fail
import dis
import sys
from cStringIO import StringIO
......
# expected: fail
# -*- coding: koi8-r -*-
import unittest
......
# expected: fail
import pickle
import pickletools
from test import test_support
......
# expected: fail
import sys
import os
import unittest
......
# expected: fail
# Test case for the os.poll() function
import os
......
# expected: fail
"""Test script for poplib module."""
# Modified by Giampaolo Rodola' to give poplib.POP3 and poplib.POP3_SSL
......
# expected: fail
import pprint
import test.test_support
import unittest
......
# expected: fail
"""Test correct operation of the print function.
"""
......
# expected: fail
"""Test suite for the profile module."""
import sys
......
# expected: fail
import unittest
import sys
from test.test_support import check_py3k_warnings, CleanImport, run_unittest
......
# expected: fail
import imp
import os
import py_compile
......
# expected: fail
'''
Test cases for pyclbr.py
Nick Mathewson
......
# expected: fail
import os
import sys
import difflib
......
# expected: fail
"""
Very minimal unittests for parts of the readline module.
......
# expected: fail
import unittest
from test import test_support
import time
......
# expected: fail
from test import test_support as support
import unittest
import __builtin__ as builtins
......
# expected: fail
# Test the runpy module
import unittest
import os
......
# expected: fail
# regression test for SAX 2.0 -*- coding: utf-8 -*-
# $Id$
......
# expected: fail
# Copyright (C) 2003 Python Software Foundation
import unittest
......
# expected: fail
import os
import unittest
import shelve
......
# expected: fail
# -*- coding: iso-8859-1 -*-
import unittest
import shlex
......
# expected: fail
import unittest
from test import test_support
from contextlib import closing
......
# expected: fail
"""Tests for 'site'.
Tests assume the initial paths in sys.path once the interpreter has begun
......
# expected: fail
import asyncore
import email.utils
import socket
......
# expected: fail
import unittest
from test import test_support
import smtplib
......
# expected: fail
import unittest
from test import test_support
......
# expected: fail
"""
Test suite for SocketServer.py.
"""
......
# expected: fail
from test.test_support import run_unittest
import unittest
import StringIO
......
# expected: fail
from test.test_support import run_unittest, import_module
# Skip test if _sqlite3 module was not built.
......
# expected: fail
# Test the support for SSL and sockets
import sys
......
# expected: fail
# Ridiculously simple test of the os.startfile function for Windows.
#
# empty.vbs is an empty file (except for a comment), which does
......
# expected: fail
# Tests for the correctly-rounded string -> float conversions
# introduced in Python 2.7 and 3.1.
......
# expected: fail
import os
import array
import unittest
......
# expected: fail
import unittest
from test import test_support
......
# expected: fail
from test.test_support import TESTFN, run_unittest
import unittest
from test import audiotests
......
# expected: fail
from test.test_support import findfile, TestFailed, import_module
import unittest
sunaudiodev = import_module('sunaudiodev', deprecated=True)
......
# expected: fail
"""Do a minimal test of all the modules that aren't otherwise tested."""
from test import test_support
......
# expected: fail
"""Supporting definitions for the Python regression tests."""
if __name__ != 'test.test_support':
......
# expected: fail
"""
Test the API of the symtable module.
"""
......
# expected: fail
"""This module tests SyntaxErrors.
Here's an example of the sort of thing that is tested.
......
# expected: fail
# -*- coding: iso-8859-1 -*-
import unittest, test.test_support
from test.script_helper import assert_python_ok, assert_python_failure
......
# expected: fail
import gc
import pprint
import sys
......
# expected: fail
# Testing the line trace facility.
from test import test_support
......
# expected: fail
"""Tests for sysconfig."""
import unittest
......
# expected: fail
# -*- coding: iso-8859-15 -*-
import sys
......
# expected: fail
import unittest
import sys
import os
......
# expected: fail
import socket
import telnetlib
import time
......
# expected: fail
# tempfile.py unit tests.
import tempfile
import errno
......
# expected: fail
import os
import unittest
import random
......
# expected: fail
# This is a variant of the very old (early 90's) file
# Demo/threads/bug.py. It simply provokes a number of threads into
# trying to import the same module "at the same time".
......
# expected: fail
"""
Create and delete FILES_PER_THREAD temp files (via tempfile.TemporaryFile)
in each of NUM_THREADS threads, recording the number of successes and
......
# expected: fail
# Very rudimentary test of threading module
import test.test_support
......
# expected: fail
import unittest
from doctest import DocTestSuite
from test import test_support
......
# expected: fail
"""PyUnit testing that threads honor our signal semantics"""
import unittest
......
# expected: fail
"""Unit tests for socket timeout feature."""
import unittest
......
# expected: fail
import os
from test import test_support
......
# expected: fail
doctests = """
Tests for the tokenize module.
......
# expected: fail
"""Tests for scripts in the Tools directory.
This file contains regression tests for some of the scripts found in the
......
# expected: fail
import os
import sys
from test.test_support import (run_unittest, TESTFN, rmtree, unlink,
......
# expected: fail
"""Test cases for traceback module"""
from StringIO import StringIO
......
# expected: fail
import unittest
from test import test_support
......
# expected: fail
import os
import unittest
from test import test_support
......
# expected: fail
import os
from test import test_support
......
# expected: fail
""" Test script for the unicodedata module.
Written by Marc-Andre Lemburg (mal@lemburg.com).
......
# expected: fail
# Tests universal newline support for both reading and parsing files.
# NOTE: this file tests the new `io` library backported from Python 3.x.
......
# expected: fail
# Tests universal newline support for both reading and parsing files.
import unittest
import os
......
# expected: fail
import urlparse
import urllib2
import BaseHTTPServer
......
# expected: fail
import unittest
from test import test_support
from test.test_urllib2 import sanepathname2url
......
# expected: fail
import unittest
from test import test_support
......
# expected: fail
"""This test checks for correct wait3() behavior.
"""
......
# expected: fail
"""This test checks for correct wait4() behavior.
"""
......
# expected: fail
from contextlib import contextmanager
import linecache
import os
......
# expected: fail
from test.test_support import TESTFN, run_unittest
import unittest
from test import audiotests
......
# expected: fail
# Test the windows specific win32reg module.
# Only win32reg functions not hit here: FlushKey, LoadKey and SaveKey
......
# expected: fail
# Ridiculously simple test of the winsound module for Windows.
import unittest
......
# expected: fail
# xml.etree test. This file contains enough tests to make sure that
# all included components work as they should.
# Large parts are extracted from the upstream test suite.
......
# expected: fail
# xml.etree test for cElementTree
from test import test_support
......
# expected: fail
import base64
import datetime
import sys
......
# expected: fail
# test_pickle dumps and loads pickles via pickle.py.
# test_cpickle does the same, but via the cPickle module.
# This test covers the other two cases, making pickles with one module and
......
# expected: fail
# We can test part of the module without zlib.
try:
import zlib
......
# expected: fail
# Tests of the full ZIP64 functionality of zipfile
# The test_support.requires call is the only reason for keeping this separate
# from test_zipfile
......
# expected: fail
import sys
import os
import marshal
......
# expected: fail
# This test module covers support in various parts of the standard library
# for working with modules located inside zipfiles
# The tests are centralised in this fashion to make it easy to drop them
......
......@@ -18,71 +18,265 @@ The CPython tests I've included fail for various reasons. Recurring issues inclu
FILE REASONS
------------------------------------------------------
test_abc [unknown]
test_aepack No module named aetypes
test_aifc Unsupported subclassing from file?
test_al No module named al
test_applesingle Not really a failure, but it tries to skip itself and we don't support that
test_argparse [unknown]
test_array [unknown]
test_ascii_formattd [unknown]
test_ast [unknown]
test_asynchat [unknown]
test_asyncore [unknown]
test_atexit [unknown]
test_audioop [unknown]
test_bigmem [unknown]
test_bisect somehow sys.modules['_bisect'] is getting set to 0
test_bsddb185 [unknown]
test_bsddb3 [unknown]
test_bsddb [unknown]
test_builtin execfile scoping issue
test_bz2 [unknown]
test_capi [unknown]
test_cd [unknown]
test_cfgparser [unknown]
test_cgi [unknown]
test_class needs ellipsis
test_cl [unknown]
test_cmath [unknown]
test_cmd_line_script [unknown]
test_cmd_line [unknown]
test_codecencodings_cn [unknown]
test_codecencodings_hk [unknown]
test_codecencodings_iso2022 [unknown]
test_codecencodings_jp [unknown]
test_codecencodings_kr [unknown]
test_codecencodings_tw [unknown]
test_codecmaps_cn [unknown]
test_codecmaps_hk [unknown]
test_codecmaps_jp [unknown]
test_codecmaps_kr [unknown]
test_codecmaps_tw [unknown]
test_codecs [unknown]
test_codeop [unknown]
test_code [unknown]
test_coding [unknown]
test_coercion 1**1L, divmod(1, 1L); some unknown bug
test_collections assertion failed when doing vars(collections.namedtuple('Point', 'x y')(11, 12))
test_contextlib lock.locked attributes
test_compileall [unknown]
test_compiler [unknown]
test_compile [unknown]
test_cookie [unknown]
test_copy [unknown]
test_cpickle [unknown]
test_cprofile [unknown]
test_crypt [unknown]
test_csv [unknown]
test_ctypes [unknown]
test_curses [unknown]
test_datetime needs _PyObject_GetDictPtr
test_dbm [unknown]
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 `exec in DefaultDict()`
test_dict misc failures related to things like gc, abc, comparisons, detecting mutations during iterations
test_descr wontfix: crashes at "self.__dict__ = self"
test_dictcomps we need to disallow assigning to dictcomps
test_dict misc failures related to things like gc, abc, comparisons, detecting mutations during iterations
test_dictviews various unique bugs
test_difflib [unknown]
test_distutils [unknown]
test_dis [unknown]
test_dl [unknown]
test_doctest hard to know. also missing some input files
test_docxmlrpc [unknown]
test_dumbdbm [unknown]
test_email_codecs [unknown]
test_email_renamed [unknown]
test_email [unknown]
test_enumerate assert instead of exception in BoxedEnumerate
test_eof [unknown]
test_exceptions we are missing recursion-depth checking
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
test_fileio [unknown]
test_file wontfix: we don't destruct file objects when the test wants
test_fork1 [unknown]
test_fractions [unknown]
test_frozen [unknown]
test_ftplib [unknown]
test_funcattrs we don't allow changing numing of function defaults
test_functools unknown errors
test_future5 [unknown]
test_future [unknown]
test_gc [unknown]
test_gdbm [unknown]
test_gdb [unknown]
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_getargs2 [unknown]
test_global SyntaxWarnings for global statements after uses
test_gl [unknown]
test_grammar bug in our tokenizer
test_hashlib [unknown]
test_heapq [unknown]
test_hotshot [unknown]
test_httplib [unknown]
test_httpservers [unknown]
test_idle [unknown]
test_imageop [unknown]
test_imaplib [unknown]
test_imgfile [unknown]
test_importhooks [unknown]
test_import [unknown]
test_imp [unknown]
test_inspect [unknown]
test_io memory/gc issue?
test_iterlen [unknown]
test_itertools [unknown]
test_json 'from test.script_helper import assert_python_ok' fails; sounds like it is trying to look at pycs
test_kqueue Not really a failure, but it tries to skip itself and we don't support that
test_lib2to3 [unknown]
test_linuxaudiodev [unknown]
test_list longs as slice indices
test__locale No module named _locale
test_locale [unknown]
test_longexp [unknown]
test_long_future [unknown]
test_long sys.long_info
test_macos Not really a failure, but it tries to skip itself and we don't support that
test_macostools Not really a failure, but it tries to skip itself and we don't support that
test_mailbox [unknown]
test_marshal [unknown]
test_memoryio [unknown]
test_memoryview [unknown]
test_minidom [unknown]
test_modulefinder [unknown]
test_module unicode docstrings
test_msilib [unknown]
test_multibytecodec [unknown]
test_multiprocessing [unknown]
test_mutants unknown failure
test_new [unknown]
test_nis [unknown]
test_old_mailbox [unknown]
test_optparse assertion instead of exceptions for long("invalid number")
test_ossaudiodev [unknown]
test_os [unknown]
test_parser [unknown]
test_pdb [unknown]
test_peepholer [unknown]
test_pep263 [unknown]
test_pep277 segfaults
test_pep352 various unique bugs
test_pickletools [unknown]
test_pickle unknown
test_pkg unknown bug
test_platform [unknown]
test_poll [unknown]
test_poplib [unknown]
test_pprint [unknown]
test_print [unknown]
test_profile [unknown]
test_py3kwarn [unknown]
test_pyclbr [unknown]
test_py_compile [unknown]
test_pydoc [unknown]
test_random long("invalid number")
test_readline [unknown]
test_repr complex.__hash__; some unknown issues
test_resource [unknown]
test_richcmp PyObject_Not
test_rlcompleter [unknown]
test_runpy [unknown]
test_sax [unknown]
test_scope eval of code object from existing function (not currently supported)
test_scriptpackages [unknown]
test_set lots of set issues
test_shelve [unknown]
test_shlex [unknown]
test_signal [unknown]
test_site [unknown]
test_smtplib [unknown]
test_smtpnet [unknown]
test_socketserver [unknown]
test_socket [unknown]
test_softspace [unknown]
test_sort argument specification issue in listSort?
test_str memory leak?
test_sqlite [unknown]
test_ssl [unknown]
test_startfile [unknown]
test_string infinite loops in test_replace
test_str memory leak?
test_strtod [unknown]
test_structmembers [unknown]
test_struct [unknown]
test_subprocess exit code 141 [sigpipe?], no error message
test_sunaudiodev [unknown]
test_sunau [unknown]
test_sundry [unknown]
test_support [unknown]
test_symtable [unknown]
test_syntax [unknown]
test_sysconfig [unknown]
test_sys_setprofile [unknown]
test_sys_settrace [unknown]
test_sys [unknown]
test_tarfile [unknown]
test_tcl [unknown]
test_telnetlib [unknown]
test_tempfile [unknown]
test_threaded_import [unknown]
test_threadedtempfile [unknown]
test_threading_local [unknown]
test_threading [unknown]
test_threadsignals [unknown]
test_thread [unknown]
test_timeout [unknown]
test_tk [unknown]
test_tokenize [unknown]
test_tools [unknown]
test_traceback [unknown]
test_trace [unknown]
test_transformer [unknown]
test_ttk_guionly [unknown]
test_ttk_textonly [unknown]
test_types PyErr_WarnEx
test_undocumented_details function.func_closure
test_unicode argument passing issue?
test_unicodedata [unknown]
test_unicode_file exit code 139, no error message
test_unittest serialize_ast assert
test_univnewlines2k [unknown]
test_univnewlines [unknown]
test_urllib2_localnet [unknown]
test_urllib2net [unknown]
test_urllib2 segfault due to attrwrapper corruption
test_urllibnet [unknown]
test_userdict segfault: repr of recursive dict?
test_userlist slice(1L, 1L)
test_userstring float(1L); hangs in test_replace
test_uuid long("invalid number")
test_wait3 [unknown]
test_wait4 [unknown]
test_warnings [unknown]
test_wave [unknown]
test_weakref weird function-picking bug (something around float.__add__)
test_weakset unknown issues
test_winreg [unknown]
test_winsound [unknown]
test_with weird codegen assert
test_wsgiref unknown issue
test_xml_etree_c [unknown]
test_xml_etree [unknown]
test_xmlrpc [unknown]
test_xpickle [unknown]
test_xrange unknown type analysis issue
test_zipfile64 [unknown]
test_zipfile [unknown]
test_zipimport_support [unknown]
test_zipimport [unknown]
```
### Getting regrtest to work is hard
......
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