Force absolute import
This commit is contained in:
parent
5e832eb235
commit
719435c3d7
1 changed files with 5 additions and 2 deletions
|
|
@ -16,6 +16,9 @@
|
||||||
#
|
#
|
||||||
# You should have received a copy of the GNU Affero General Public License
|
# You should have received a copy of the GNU Affero General Public License
|
||||||
# along with weboob. If not, see <http://www.gnu.org/licenses/>.
|
# along with weboob. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
from __future__ import absolute_import
|
||||||
|
|
||||||
|
__all__ = ['OrderedDict']
|
||||||
|
|
||||||
|
|
||||||
try:
|
try:
|
||||||
|
|
@ -27,7 +30,7 @@ except ImportError:
|
||||||
try:
|
try:
|
||||||
from ordereddict import OrderedDict
|
from ordereddict import OrderedDict
|
||||||
except ImportError:
|
except ImportError:
|
||||||
## {{{ http://code.activestate.com/recipes/576693/ (r6)
|
# {{{ http://code.activestate.com/recipes/576693/ (r6)
|
||||||
from UserDict import DictMixin
|
from UserDict import DictMixin
|
||||||
|
|
||||||
class OrderedDict(dict, DictMixin):
|
class OrderedDict(dict, DictMixin):
|
||||||
|
|
@ -127,4 +130,4 @@ except ImportError:
|
||||||
|
|
||||||
def __ne__(self, other):
|
def __ne__(self, other):
|
||||||
return not self == other
|
return not self == other
|
||||||
## end of http://code.activestate.com/recipes/576693/ }}}
|
# end of http://code.activestate.com/recipes/576693/ }}}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue