summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--morphlib/morph2.py11
-rw-r--r--morphlib/util.py12
2 files changed, 12 insertions, 11 deletions
diff --git a/morphlib/morph2.py b/morphlib/morph2.py
index 4fdf7ba4..9e5be2e6 100644
--- a/morphlib/morph2.py
+++ b/morphlib/morph2.py
@@ -17,16 +17,7 @@
import copy
import re
-# It is intentional that if collections does not have OrderedDict that
-# simplejson is also used in preference to json, as OrderedDict became
-# a member of collections in the same release json got its object_pairs_hook
-try: # pragma: no cover
- from collections import OrderedDict
- import json
-except ImportError: # pragma: no cover
- from ordereddict import OrderedDict
- import simplejson as json
-
+from morphlib.util import OrderedDict, json
class Morphology(object):
diff --git a/morphlib/util.py b/morphlib/util.py
index 100f4b6b..e171714a 100644
--- a/morphlib/util.py
+++ b/morphlib/util.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2011-2012 Codethink Limited
+# Copyright (C) 2011-2013 Codethink Limited
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
@@ -20,6 +20,16 @@ import morphlib
'''Utility functions for morph.'''
+# It is intentional that if collections does not have OrderedDict that
+# simplejson is also used in preference to json, as OrderedDict became
+# a member of collections in the same release json got its object_pairs_hook
+try: # pragma: no cover
+ from collections import OrderedDict
+ import json
+except ImportError: # pragma: no cover
+ from ordereddict import OrderedDict
+ import simplejson as json
+
try:
from multiprocessing import cpu_count
except NotImplementedError: # pragma: no cover