X Tutup
Skip to content

Commit bebcdb3

Browse files
committed
Remove __future__ imports
1 parent c0c2e48 commit bebcdb3

39 files changed

+0
-51
lines changed

bpdb/__init__.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,6 @@
2323
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2424
# THE SOFTWARE.
2525

26-
from __future__ import print_function, absolute_import
27-
2826
import os
2927
import sys
3028
import traceback

bpdb/__main__.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,6 @@
2222
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2323
# THE SOFTWARE.
2424

25-
from __future__ import absolute_import
26-
2725
import sys
2826

2927
if __name__ == "__main__":

bpdb/debugger.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,6 @@
2222
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2323
# THE SOFTWARE.
2424

25-
from __future__ import print_function
26-
2725
import pdb
2826
import bpython
2927

bpython/__init__.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@
2020
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2121
# THE SOFTWARE.
2222

23-
from __future__ import absolute_import
2423

2524
import os.path
2625

bpython/__main__.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@
2222
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2323
# THE SOFTWARE.
2424

25-
from __future__ import absolute_import
2625

2726
import sys
2827

bpython/_internal.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
# encoding: utf-8
22

3-
from __future__ import absolute_import
4-
53
import pydoc
64
import sys
75

bpython/_py3compat.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@
3434
- py3: True if the hosting Python runtime is of Python version 3 or later
3535
"""
3636

37-
from __future__ import absolute_import
3837

3938
import sys
4039
import threading

bpython/args.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
Module to handle command line argument parsing, for all front-ends.
55
"""
66

7-
from __future__ import print_function, absolute_import
87

98
import code
109
import imp

bpython/autocomplete.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@
2323
# THE SOFTWARE.
2424
#
2525

26-
from __future__ import unicode_literals, absolute_import
2726

2827
import __main__
2928
import abc

bpython/cli.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@
3939
# - Instead the suspend key exits the program
4040
# - View source doesn't work on windows unless you install the less program (From GnuUtils or Cygwin)
4141

42-
from __future__ import division, absolute_import
4342

4443
import platform
4544
import os

0 commit comments

Comments
 (0)
X Tutup