summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--blessings/__init__.py1
-rw-r--r--blessings/tests.py2
2 files changed, 0 insertions, 3 deletions
diff --git a/blessings/__init__.py b/blessings/__init__.py
index ebace02..388cece 100644
--- a/blessings/__init__.py
+++ b/blessings/__init__.py
@@ -1,7 +1,6 @@
"""A thin, practical wrapper around terminal coloring, styling, and
positioning"""
-from __future__ import absolute_import
from contextlib import contextmanager
import curses
from curses import setupterm, tigetnum, tigetstr, tparm
diff --git a/blessings/tests.py b/blessings/tests.py
index c51b36c..a03eb8d 100644
--- a/blessings/tests.py
+++ b/blessings/tests.py
@@ -9,8 +9,6 @@ All we require from the host machine is that a standard terminfo definition of
xterm-256color exists.
"""
-from __future__ import with_statement # Make 2.5-compatible
-from __future__ import absolute_import
from curses import tigetstr, tparm
from functools import partial
import sys