~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/urlutils.py

  • Committer: Aaron Bentley
  • Date: 2006-09-19 16:26:17 UTC
  • mfrom: (2022 +trunk)
  • mto: This revision was merged to the branch mainline in revision 2162.
  • Revision ID: abentley@panoramicfeedback.com-20060919162617-e6099afb05b6a9ef
Merge from bzr.dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
129
129
        if m:
130
130
            # Absolute URL
131
131
            scheme = m.group('scheme')
 
132
            # this skips .. normalisation, making http://host/../../..
 
133
            # be rather strange.
132
134
            path = m.group('path').split('/')
133
135
        else:
134
136
            for chunk in arg.split('/'):