/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 breezy/_walkdirs_win32.pyx

  • Committer: Breezy landing bot
  • Author(s): Colin Watson
  • Date: 2020-11-16 21:47:08 UTC
  • mfrom: (7521.1.1 remove-lp-workaround)
  • Revision ID: breezy.the.bot@gmail.com-20201116214708-jos209mgxi41oy15
Remove breezy.git workaround for bazaar.launchpad.net.

Merged from https://code.launchpad.net/~cjwatson/brz/remove-lp-workaround/+merge/393710

Show diffs side-by-side

added added

removed removed

Lines of Context:
13
13
# You should have received a copy of the GNU General Public License
14
14
# along with this program; if not, write to the Free Software
15
15
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 
16
#
 
17
# cython: language_level=3
16
18
 
17
19
"""Helper functions for Walkdirs on win32."""
18
20
 
72
74
import os
73
75
import stat
74
76
 
75
 
from bzrlib import _readdir_py
 
77
from . import _readdir_py
76
78
 
77
79
cdef object osutils
78
80
osutils = None
187
189
        """See DirReader.top_prefix_to_starting_dir."""
188
190
        global osutils
189
191
        if osutils is None:
190
 
            from bzrlib import osutils
 
192
            from . import osutils
191
193
        return (osutils.safe_utf8(prefix), None, None, None,
192
194
                osutils.safe_unicode(top))
193
195