Show More
@@ -131,13 +131,6 b' def addbranchrevs(lrepo, other, branches' | |||
|
131 | 131 | return revs, revs[0] |
|
132 | 132 | |
|
133 | 133 | |
|
134 | def parseurl(path, branches=None): | |
|
135 | '''parse url#branch, returning (url, (branch, branches))''' | |
|
136 | msg = b'parseurl(...) moved to mercurial.utils.urlutil' | |
|
137 | util.nouideprecwarn(msg, b'6.0', stacklevel=2) | |
|
138 | return urlutil.parseurl(path, branches=branches) | |
|
139 | ||
|
140 | ||
|
141 | 134 | schemes = { |
|
142 | 135 | b'bundle': bundlerepo, |
|
143 | 136 | b'union': unionrepo, |
@@ -57,7 +57,6 b' from .utils import (' | |||
|
57 | 57 | hashutil, |
|
58 | 58 | procutil, |
|
59 | 59 | stringutil, |
|
60 | urlutil, | |
|
61 | 60 | ) |
|
62 | 61 | |
|
63 | 62 | if pycompat.TYPE_CHECKING: |
@@ -2991,54 +2990,6 b' def interpolate(prefix, mapping, s, fn=N' | |||
|
2991 | 2990 | return r.sub(lambda x: fn(mapping[x.group()[1:]]), s) |
|
2992 | 2991 | |
|
2993 | 2992 | |
|
2994 | def getport(*args, **kwargs): | |
|
2995 | msg = b'getport(...) moved to mercurial.utils.urlutil' | |
|
2996 | nouideprecwarn(msg, b'6.0', stacklevel=2) | |
|
2997 | return urlutil.getport(*args, **kwargs) | |
|
2998 | ||
|
2999 | ||
|
3000 | def url(*args, **kwargs): | |
|
3001 | msg = b'url(...) moved to mercurial.utils.urlutil' | |
|
3002 | nouideprecwarn(msg, b'6.0', stacklevel=2) | |
|
3003 | return urlutil.url(*args, **kwargs) | |
|
3004 | ||
|
3005 | ||
|
3006 | def hasscheme(*args, **kwargs): | |
|
3007 | msg = b'hasscheme(...) moved to mercurial.utils.urlutil' | |
|
3008 | nouideprecwarn(msg, b'6.0', stacklevel=2) | |
|
3009 | return urlutil.hasscheme(*args, **kwargs) | |
|
3010 | ||
|
3011 | ||
|
3012 | def hasdriveletter(*args, **kwargs): | |
|
3013 | msg = b'hasdriveletter(...) moved to mercurial.utils.urlutil' | |
|
3014 | nouideprecwarn(msg, b'6.0', stacklevel=2) | |
|
3015 | return urlutil.hasdriveletter(*args, **kwargs) | |
|
3016 | ||
|
3017 | ||
|
3018 | def urllocalpath(*args, **kwargs): | |
|
3019 | msg = b'urllocalpath(...) moved to mercurial.utils.urlutil' | |
|
3020 | nouideprecwarn(msg, b'6.0', stacklevel=2) | |
|
3021 | return urlutil.urllocalpath(*args, **kwargs) | |
|
3022 | ||
|
3023 | ||
|
3024 | def checksafessh(*args, **kwargs): | |
|
3025 | msg = b'checksafessh(...) moved to mercurial.utils.urlutil' | |
|
3026 | nouideprecwarn(msg, b'6.0', stacklevel=2) | |
|
3027 | return urlutil.checksafessh(*args, **kwargs) | |
|
3028 | ||
|
3029 | ||
|
3030 | def hidepassword(*args, **kwargs): | |
|
3031 | msg = b'hidepassword(...) moved to mercurial.utils.urlutil' | |
|
3032 | nouideprecwarn(msg, b'6.0', stacklevel=2) | |
|
3033 | return urlutil.hidepassword(*args, **kwargs) | |
|
3034 | ||
|
3035 | ||
|
3036 | def removeauth(*args, **kwargs): | |
|
3037 | msg = b'removeauth(...) moved to mercurial.utils.urlutil' | |
|
3038 | nouideprecwarn(msg, b'6.0', stacklevel=2) | |
|
3039 | return urlutil.removeauth(*args, **kwargs) | |
|
3040 | ||
|
3041 | ||
|
3042 | 2993 | timecount = unitcountfn( |
|
3043 | 2994 | (1, 1e3, _(b'%.0f s')), |
|
3044 | 2995 | (100, 1, _(b'%.1f s')), |
General Comments 0
You need to be logged in to leave comments.
Login now