~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/lockdir.py

  • Committer: Patch Queue Manager
  • Date: 2011-12-15 12:43:54 UTC
  • mfrom: (6374.2.2 fix_news_2.5b5)
  • Revision ID: pqm@pqm.ubuntu.com-20111215124354-r79d90ukkqzpfeyf
(gz) Add missing release notes for previously landed branches (Martin
 Packman)

Show diffs side-by-side

added added

removed removed

Lines of Context:
98
98
but helps protect against colliding host names.
99
99
"""
100
100
 
101
 
from __future__ import absolute_import
102
 
 
103
101
 
104
102
# TODO: We sometimes have the problem that our attempt to rename '1234' to
105
103
# 'held' fails because the transport server moves into an existing directory,
109
107
# the existing locking code and needs a new format of the containing object.
110
108
# -- robertc, mbp 20070628
111
109
 
 
110
import errno
112
111
import os
113
112
import time
114
113