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
......
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
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