/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/config.py

  • Committer: Jelmer Vernooij
  • Date: 2011-11-22 13:27:04 UTC
  • mto: This revision was merged to the branch mainline in revision 6283.
  • Revision ID: jelmer@samba.org-20111122132704-e8uwuzhpharukn8c
Add notes about Remote{Control,Branch}Store.

Show diffs side-by-side

added added

removed removed

Lines of Context:
3428
3428
class RemoteControlStack(_CompatibleStack):
3429
3429
    """Remote control-only options stack."""
3430
3430
 
 
3431
    # FIXME 2011-11-22 JRV This should probably be renamed to avoid confusion
 
3432
    # with the stack used for remote bzr dirs. RemoteControlStack only uses
 
3433
    # control.conf and is used only for stack options.
 
3434
 
3431
3435
    def __init__(self, bzrdir):
3432
3436
        cstore = bzrdir._get_config_store()
3433
3437
        super(RemoteControlStack, self).__init__(
3439
3443
class RemoteBranchStack(_CompatibleStack):
3440
3444
    """Remote branch-only options stack."""
3441
3445
 
 
3446
    # FIXME 2011-11-22 JRV This should probably be renamed to avoid confusion
 
3447
    # with the stack used for remote branches. RemoteBranchStack only uses
 
3448
    # branch.conf and is used only for the stack options.
 
3449
 
3442
3450
    def __init__(self, branch):
3443
3451
        bstore = branch._get_config_store()
3444
3452
        super(RemoteBranchStack, self).__init__(