import style nits

This commit is contained in:
Benjamin Peterson 2011-03-15 09:50:18 -05:00
parent 906f0c45fd
commit eb46288a8d
1 changed files with 13 additions and 8 deletions

View File

@ -2,18 +2,23 @@
Tests for fileinput module. Tests for fileinput module.
Nick Mathewson Nick Mathewson
''' '''
import os
import unittest import sys
from test.support import verbose, TESTFN, run_unittest import re
from test.support import unlink as safe_unlink
import os, sys, re
from io import StringIO
from fileinput import FileInput, hook_encoded
import fileinput import fileinput
import collections import collections
import gzip, bz2 import gzip
import bz2
import types import types
import codecs import codecs
import unittest
from io import StringIO
from fileinput import FileInput, hook_encoded
from test.support import verbose, TESTFN, run_unittest
from test.support import unlink as safe_unlink
# The fileinput module has 2 interfaces: the FileInput class which does # The fileinput module has 2 interfaces: the FileInput class which does
# all the work, and a few functions (input, etc.) that use a global _state # all the work, and a few functions (input, etc.) that use a global _state