aboutsummaryrefslogtreecommitdiffstats
path: root/netlib/odict.py
diff options
context:
space:
mode:
Diffstat (limited to 'netlib/odict.py')
-rw-r--r--netlib/odict.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/netlib/odict.py b/netlib/odict.py
index 8e195afc..46b74e8e 100644
--- a/netlib/odict.py
+++ b/netlib/odict.py
@@ -1,5 +1,4 @@
import re, copy
-from netlib.stateobject import StateObject
def safe_subn(pattern, repl, target, *args, **kwargs):
@@ -11,7 +10,7 @@ def safe_subn(pattern, repl, target, *args, **kwargs):
return re.subn(str(pattern), str(repl), target, *args, **kwargs)
-class ODict(StateObject):
+class ODict:
"""
A dictionary-like object for managing ordered (key, value) data.
"""