Skip to content

Commit 2d99b62

Browse files
bschoeningabsurdfarce
authored andcommitted
remove obsolete __future__ import absolute_import
patch by Brad Schoening; reviewed by Brad Schoening and Bret McGuire reference: #1263
1 parent 7cbb3fb commit 2d99b62

5 files changed

Lines changed: 0 additions & 5 deletions

File tree

cassandra/cluster.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@
1818
This module houses the main classes you will interact with,
1919
:class:`.Cluster` and :class:`.Session`.
2020
"""
21-
from __future__ import absolute_import
2221

2322
import atexit
2423
from binascii import hexlify

cassandra/connection.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414
# See the License for the specific language governing permissions and
1515
# limitations under the License.
1616

17-
from __future__ import absolute_import # to enable import io from stdlib
1817
from collections import defaultdict, deque
1918
import errno
2019
from functools import wraps, partial, total_ordering

cassandra/cqltypes.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@
2929
# for example), these classes would be a good place to tack on
3030
# .from_cql_literal() and .as_cql_literal() classmethods (or whatever).
3131

32-
from __future__ import absolute_import # to enable import io from stdlib
3332
import ast
3433
from binascii import unhexlify
3534
import calendar

cassandra/protocol.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414
# See the License for the specific language governing permissions and
1515
# limitations under the License.
1616

17-
from __future__ import absolute_import # to enable import io from stdlib
1817
from collections import namedtuple
1918
import logging
2019
import socket

tests/integration/cqlengine/query/test_queryset.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1414
# See the License for the specific language governing permissions and
1515
# limitations under the License.
16-
from __future__ import absolute_import
1716

1817
import unittest
1918

0 commit comments

Comments
 (0)