summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLucas Hoffmann <l-m-h@web.de>2018-08-02 17:04:02 +0200
committerLucas Hoffmann <l-m-h@web.de>2018-08-08 23:47:47 +0200
commite128909149134d7ee85dc5af904d9a55973040d8 (patch)
tree06ad2df09e325157558a5268f0aebeb728bd5a44
parenta30079a4856e83522af512591ceaf05cc123eab3 (diff)
downloadvdebug-e128909149134d7ee85dc5af904d9a55973040d8.zip
Remove __future__ imports
They are currently not needed with python3.
-rw-r--r--python3/vdebug/connection.py2
-rw-r--r--python3/vdebug/dbgp.py2
-rw-r--r--python3/vdebug/event.py2
-rw-r--r--python3/vdebug/log.py2
-rw-r--r--python3/vdebug/session.py2
-rw-r--r--python3/vdebug/ui/vimui.py2
-rw-r--r--python3/vdebug/util.py2
7 files changed, 0 insertions, 14 deletions
diff --git a/python3/vdebug/connection.py b/python3/vdebug/connection.py
index 3f2d618..abe4460 100644
--- a/python3/vdebug/connection.py
+++ b/python3/vdebug/connection.py
@@ -1,5 +1,3 @@
-from __future__ import print_function
-
try:
import queue
except ImportError:
diff --git a/python3/vdebug/dbgp.py b/python3/vdebug/dbgp.py
index 818e670..e26ad10 100644
--- a/python3/vdebug/dbgp.py
+++ b/python3/vdebug/dbgp.py
@@ -1,5 +1,3 @@
-from __future__ import print_function
-
import base64
import socket
import sys
diff --git a/python3/vdebug/event.py b/python3/vdebug/event.py
index 67b9054..924b928 100644
--- a/python3/vdebug/event.py
+++ b/python3/vdebug/event.py
@@ -1,6 +1,4 @@
# coding=utf-8
-from __future__ import print_function
-
import re
import vim
diff --git a/python3/vdebug/log.py b/python3/vdebug/log.py
index 9c078dc..2793886 100644
--- a/python3/vdebug/log.py
+++ b/python3/vdebug/log.py
@@ -1,5 +1,3 @@
-from __future__ import print_function
-
import os
import sys
import time
diff --git a/python3/vdebug/session.py b/python3/vdebug/session.py
index c42a300..a6ec8c6 100644
--- a/python3/vdebug/session.py
+++ b/python3/vdebug/session.py
@@ -1,5 +1,3 @@
-from __future__ import print_function
-
import socket
import vim
diff --git a/python3/vdebug/ui/vimui.py b/python3/vdebug/ui/vimui.py
index bd3d97e..b1056ce 100644
--- a/python3/vdebug/ui/vimui.py
+++ b/python3/vdebug/ui/vimui.py
@@ -1,6 +1,4 @@
# coding=utf-8
-from __future__ import print_function
-
import vim
from . import interface
diff --git a/python3/vdebug/util.py b/python3/vdebug/util.py
index 39b2d43..8f76acc 100644
--- a/python3/vdebug/util.py
+++ b/python3/vdebug/util.py
@@ -1,5 +1,3 @@
-from __future__ import print_function
-
import os
import re
import socket