Skip to content

Commit e055198

Browse files
committed
also remove all __future__ usage
1 parent 8bbd2cc commit e055198

File tree

11 files changed

+0
-22
lines changed

11 files changed

+0
-22
lines changed

README.rst

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,6 @@ A very quick example of using Effects:
4444

4545
.. code:: python
4646
47-
from __future__ import print_function
4847
from effect import sync_perform, sync_performer, Effect, TypeDispatcher
4948
5049
class ReadLine(object):

effect/__init__.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,6 @@
77
See https://effect.readthedocs.org/ for documentation.
88
"""
99

10-
from __future__ import absolute_import
11-
1210
from ._base import Effect, perform, NoPerformerFoundError, catch, raise_
1311
from ._sync import (
1412
NotSynchronousError,

effect/_base.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
# -*- test-case-name: effect.test_base -*-
2-
from __future__ import print_function, absolute_import
3-
42
from functools import partial
53

64
import attr

effect/_intents.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,6 @@
88
performed, sunch as :class:`Func`, :class:`Error`, and :class:`Constant`.
99
"""
1010

11-
12-
from __future__ import print_function, absolute_import
13-
1411
import time
1512

1613
import attr

effect/do.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,6 @@
44
See :func:`do`.
55
"""
66

7-
8-
from __future__ import print_function
9-
107
import types
118

129
from . import Effect, Func

effect/io.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
:obj:`Prompt` that uses built-in Python standard io facilities.
55
"""
66

7-
from __future__ import print_function
87
import attr
98

109
from . import sync_performer, TypeDispatcher

effect/test_async.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
from __future__ import print_function
2-
31
from testtools.testcase import TestCase
42

53
from ._base import Effect, perform

effect/test_base.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
from __future__ import print_function, absolute_import
2-
31
import traceback
42

53
from testtools import TestCase

effect/test_intents.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
from __future__ import print_function, absolute_import
2-
31
from functools import partial
42

53
from testtools import TestCase

effect/test_threads.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
from __future__ import print_function
2-
31
from functools import partial
42

53
from multiprocessing.pool import ThreadPool

0 commit comments

Comments
 (0)