Skip to content

Commit 2961b53

Browse files
committed
the __future__ is now.
1 parent c05c179 commit 2961b53

File tree

121 files changed

+3
-158
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

121 files changed

+3
-158
lines changed

IPython/__init__.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@
1818
#-----------------------------------------------------------------------------
1919
# Imports
2020
#-----------------------------------------------------------------------------
21-
from __future__ import absolute_import
2221

2322
import os
2423
import sys

IPython/core/compilerop.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@
2525
#-----------------------------------------------------------------------------
2626
# Imports
2727
#-----------------------------------------------------------------------------
28-
from __future__ import print_function
2928

3029
# Stdlib imports
3130
import __future__

IPython/core/completer.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
# Some of this code originated from rlcompleter in the Python standard library
1414
# Copyright (C) 2001 Python Software Foundation, www.python.org
1515

16-
from __future__ import print_function
1716

1817
import __main__
1918
import glob

IPython/core/completerlib.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414
#-----------------------------------------------------------------------------
1515
# Imports
1616
#-----------------------------------------------------------------------------
17-
from __future__ import print_function
1817

1918
# Stdlib imports
2019
import glob

IPython/core/crashhandler.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@
1818
#-----------------------------------------------------------------------------
1919
# Imports
2020
#-----------------------------------------------------------------------------
21-
from __future__ import print_function
2221

2322
import os
2423
import sys

IPython/core/debugger.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@
2424
#
2525
#
2626
#*****************************************************************************
27-
from __future__ import print_function
2827

2928
import bdb
3029
import functools

IPython/core/display.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
# Copyright (c) IPython Development Team.
55
# Distributed under the terms of the Modified BSD License.
66

7-
from __future__ import print_function
87

98
try:
109
from base64 import encodebytes as base64_encode

IPython/core/displayhook.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
# Copyright (c) IPython Development Team.
88
# Distributed under the terms of the Modified BSD License.
99

10-
from __future__ import print_function
1110

1211
import sys
1312
import io as _io

IPython/core/displaypub.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
# Copyright (c) IPython Development Team.
1616
# Distributed under the terms of the Modified BSD License.
1717

18-
from __future__ import print_function
1918

2019
import sys
2120

IPython/core/events.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
1313
This API is experimental in IPython 2.0, and may be revised in future versions.
1414
"""
15-
from __future__ import print_function
1615

1716
class EventManager(object):
1817
"""Manage a collection of events and a sequence of callbacks for each.

0 commit comments

Comments
 (0)