i hate namespace conflicts
author |
Jeff Hammel <k0scist@gmail.com> |
date |
Sun, 17 Dec 2017 14:03:02 -0800 |
parents |
0f3af15bb29a |
children |
b56d329c238d |
files |
tvii/_types.py tvii/types.py |
diffstat |
2 files changed, 10 insertions(+), 10 deletions(-)
[+]
|
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tvii/_types.py Sun Dec 17 14:03:02 2017 -0800
@@ -0,0 +1,10 @@
+"""
+data types
+"""
+
+try:
+ # python2
+ string = (str, basestring)
+except NameError:
+ # python3
+ string = (str,)
--- a/tvii/types.py Sun Dec 17 13:55:35 2017 -0800
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,10 +0,0 @@
-"""
-data types
-"""
-
-try:
- # python2
- string = (str, basestring)
-except NameError:
- # python3
- string = (str,)