/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

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2007-08-16 01:58:16 UTC
  • mfrom: (2696.1.2 remove-deprecated)
  • Revision ID: pqm@pqm.ubuntu.com-20070816015816-95mkpi0q9k1hrsy3
Remove deprecated interfaces

Show diffs side-by-side

added added

removed removed

Lines of Context:
57
57
from bzrlib import symbol_versioning
58
58
from bzrlib.symbol_versioning import (
59
59
    deprecated_function,
60
 
    zero_nine,
61
60
    )
62
61
from bzrlib.trace import mutter
63
62
 
768
767
    return pathjoin(*p)
769
768
 
770
769
 
771
 
@deprecated_function(zero_nine)
772
 
def appendpath(p1, p2):
773
 
    if p1 == '':
774
 
        return p2
775
 
    else:
776
 
        return pathjoin(p1, p2)
777
 
    
778
 
 
779
770
def split_lines(s):
780
771
    """Split s into lines, but without removing the newline characters."""
781
772
    lines = s.split('\n')