/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/osutils.py

Merge bzr.dev into cleanup

Show diffs side-by-side

added added

removed removed

Lines of Context:
205
205
    :param unlink_func: A way to delete the target file if the full rename
206
206
        succeeds
207
207
    """
208
 
    new = safe_unicode(new)
209
208
    # sftp rename doesn't allow overwriting, so play tricks:
210
209
    base = os.path.basename(new)
211
210
    dirname = os.path.dirname(new)
212
 
    tmp_name = u'tmp.%s.%.9f.%d.%s' % (base, time.time(),
213
 
                                       os.getpid(), rand_chars(10))
 
211
    # callers use different encodings for the paths so the following MUST
 
212
    # respect that. We rely on python upcasting to unicode if new is unicode
 
213
    # and keeping a str if not.
 
214
    tmp_name = 'tmp.%s.%.9f.%d.%s' % (base, time.time(),
 
215
                                      os.getpid(), rand_chars(10))
214
216
    tmp_name = pathjoin(dirname, tmp_name)
215
217
 
216
218
    # Rename the file out of the way, but keep track if it didn't exist