# HG changeset patch # User Augie Fackler # Date 1476018047 14400 # Node ID dadb00a0ec0f1560c632419fc606d9bb95ba31dd # Parent 2d996af02fd8353fc1b899749691f69241cd1d01 util: use '\\' rather than using r'\' We need bytes, and I find this just a little more immediately obvious than doing rb'\'. diff -r 2d996af02fd8 -r dadb00a0ec0f mercurial/util.py --- a/mercurial/util.py Sun Oct 09 09:03:10 2016 -0400 +++ b/mercurial/util.py Sun Oct 09 09:00:47 2016 -0400 @@ -2380,7 +2380,7 @@ _safechars = "!~*'()+" _safepchars = "/!~*'()+:\\" - _matchscheme = remod.compile(r'^[a-zA-Z0-9+.\-]+:').match + _matchscheme = remod.compile('^[a-zA-Z0-9+.\\-]+:').match def __init__(self, path, parsequery=True, parsefragment=True): # We slowly chomp away at path until we have only the path left @@ -2394,7 +2394,7 @@ path, self.fragment = path.split('#', 1) # special case for Windows drive letters and UNC paths - if hasdriveletter(path) or path.startswith(r'\\'): + if hasdriveletter(path) or path.startswith('\\\\'): self.path = path return