Remove unneeded __future__ import

This commit is contained in:
Bastian Kleineidam 2010-11-21 10:45:30 +01:00
parent eef778ed8e
commit 017a1087ba
9 changed files with 0 additions and 9 deletions

View file

@ -16,7 +16,6 @@
# with this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
from __future__ import with_statement
import fcgi
import linkcheck
import linkcheck.lc_cgi

View file

@ -17,7 +17,6 @@
"""
Handle a queue of URLs to check.
"""
from __future__ import with_statement
import threading
import collections
from time import time as _time

View file

@ -15,7 +15,6 @@
# with this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
from __future__ import with_statement
import socket
import os
from . import log, LOG_ROOT

View file

@ -27,7 +27,6 @@ And a cookie storage class is provided.
[2] http://www.faqs.org/rfcs/rfc2109.html
"""
from __future__ import with_statement
import time
import re
import Cookie

View file

@ -35,7 +35,6 @@ def h ():
pass
"""
from __future__ import with_statement
import warnings
import signal
import os

View file

@ -18,7 +18,6 @@
A blacklist logger.
"""
from __future__ import with_statement
import os
from . import Logger
from .. import i18n

View file

@ -14,7 +14,6 @@
# You should have received a copy of the GNU General Public License along
# with this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
from __future__ import with_statement # Required in 2.5
import signal
import subprocess
import os

View file

@ -17,7 +17,6 @@
"""
Define standard test support classes funtional for LinkChecker tests.
"""
from __future__ import with_statement
import os
import re
import codecs

View file

@ -14,7 +14,6 @@
# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
# OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
from __future__ import with_statement
from cStringIO import StringIO
import os
import unittest