"Dual Object Notation" -> "Twofold Object Notation"
[ton] / don / _shared.py
diff --git a/don/_shared.py b/don/_shared.py
deleted file mode 100644 (file)
index 9ce9ca4..0000000
+++ /dev/null
@@ -1,14 +0,0 @@
-import collections
-
-from don import tags
-
-ParseResult = collections.namedtuple(
-    'ParseResult',
-    [
-        'success',
-        'value',
-        'remaining',
-    ],
-)
-
-_FAILED_PARSE_RESULT = ParseResult(success = False, value = None, remaining = None)