mirror of
https://github.com/Hopiu/linkchecker.git
synced 2026-03-16 22:10:26 +00:00
Remove unneeded __future__ import
This commit is contained in:
parent
eef778ed8e
commit
017a1087ba
9 changed files with 0 additions and 9 deletions
|
|
@ -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
|
||||
|
|
|
|||
1
linkcheck/cache/urlqueue.py
vendored
1
linkcheck/cache/urlqueue.py
vendored
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -35,7 +35,6 @@ def h ():
|
|||
pass
|
||||
|
||||
"""
|
||||
from __future__ import with_statement
|
||||
import warnings
|
||||
import signal
|
||||
import os
|
||||
|
|
|
|||
|
|
@ -18,7 +18,6 @@
|
|||
A blacklist logger.
|
||||
"""
|
||||
|
||||
from __future__ import with_statement
|
||||
import os
|
||||
from . import Logger
|
||||
from .. import i18n
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -17,7 +17,6 @@
|
|||
"""
|
||||
Define standard test support classes funtional for LinkChecker tests.
|
||||
"""
|
||||
from __future__ import with_statement
|
||||
import os
|
||||
import re
|
||||
import codecs
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue