summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorErik Rose <grinch@grinchcentral.com>2015-03-04 23:06:16 -0500
committerErik Rose <grinch@grinchcentral.com>2015-03-04 23:06:16 -0500
commitbeef813e507c363b8ecc09b32bc06f72a2fcb790 (patch)
tree5ee27d8bc7045b7b924483b6f1da61a22c63f6ff
parent7ae44194c6a74f5eb7e1350e5590e1b8efa2b65b (diff)
downloadblessings-beef813e507c363b8ecc09b32bc06f72a2fcb790.tar.gz
Make __all__ lists, not tuples. Fix #83. Close #88.
-rw-r--r--blessings/__init__.py2
-rw-r--r--blessings/_binterms.py2
-rw-r--r--blessings/keyboard.py2
-rw-r--r--blessings/sequences.py2
4 files changed, 4 insertions, 4 deletions
diff --git a/blessings/__init__.py b/blessings/__init__.py
index 3622d0e..f5a65eb 100644
--- a/blessings/__init__.py
+++ b/blessings/__init__.py
@@ -13,4 +13,4 @@ if ('3', '0', '0') <= _platform.python_version_tuple() < ('3', '2', '2+'):
from .terminal import Terminal
-__all__ = ('Terminal',)
+__all__ = ['Terminal']
diff --git a/blessings/_binterms.py b/blessings/_binterms.py
index 504bc9c..9621be5 100644
--- a/blessings/_binterms.py
+++ b/blessings/_binterms.py
@@ -868,4 +868,4 @@ zen50
ztx
""".split()
-__all__ = ('binary_terminals',)
+__all__ = ['binary_terminals']
diff --git a/blessings/keyboard.py b/blessings/keyboard.py
index 280606d..32af0ff 100644
--- a/blessings/keyboard.py
+++ b/blessings/keyboard.py
@@ -3,7 +3,7 @@
__author__ = 'Jeff Quast <contact@jeffquast.com>'
__license__ = 'MIT'
-__all__ = ('Keystroke', 'get_keyboard_codes', 'get_keyboard_sequences',)
+__all__ = ['Keystroke', 'get_keyboard_codes', 'get_keyboard_sequences']
import curses.has_key
import collections
diff --git a/blessings/sequences.py b/blessings/sequences.py
index 80649c3..a1ca113 100644
--- a/blessings/sequences.py
+++ b/blessings/sequences.py
@@ -4,7 +4,7 @@
__author__ = 'Jeff Quast <contact@jeffquast.com>'
__license__ = 'MIT'
-__all__ = ('init_sequence_patterns', 'Sequence', 'SequenceTextWrapper',)
+__all__ = ['init_sequence_patterns', 'Sequence', 'SequenceTextWrapper']
# built-ins
import functools