~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/bzrdir.py

  • Committer: Jelmer Vernooij
  • Date: 2011-12-22 14:31:46 UTC
  • mto: This revision was merged to the branch mainline in revision 6404.
  • Revision ID: jelmer@samba.org-20111222143146-wgiqh8y0pp2mz2tm
use ordereddict

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
 
28
28
from __future__ import absolute_import
29
29
 
 
30
from collections import OrderedDict
30
31
import sys
31
32
 
32
33
from bzrlib.lazy_import import lazy_import
1127
1128
    _present_features = set()
1128
1129
 
1129
1130
    def __init__(self):
1130
 
        self.features = {}
 
1131
        self.features = OrderedDict()
1131
1132
 
1132
1133
    @classmethod
1133
1134
    def register_feature(cls, name):