commit ec0b5538a95a39f7e2b3a3fbcf47a03739f16a6b Author: Damian Johnson atagar@torproject.org Date: Sat Mar 9 22:33:07 2013 -0800
Notice to stem users not to use stem.util.ordereddict
The ordereddict module is to allow us to support python 2.5 and 2.6. Adding a notice that it may be dropped in the future. --- stem/util/ordereddict.py | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-)
diff --git a/stem/util/ordereddict.py b/stem/util/ordereddict.py index 1ca0bf7..07c7d4e 100644 --- a/stem/util/ordereddict.py +++ b/stem/util/ordereddict.py @@ -1,5 +1,8 @@ # Drop in replacement for python 2.7's OrderedDict, from... # http://pypi.python.org/pypi/ordereddict +# +# Stem users should *not* rely upon this module. It will be removed when we +# drop support for python 2.6 and below.
# Copyright (c) 2009 Raymond Hettinger #