##// END OF EJS Templates
util: provide a helper function to estimate RAM size...
util: provide a helper function to estimate RAM size For POSIX systems, it uses sysconf. For Windows, it uses the win32 API directly. Differential Revision: https://phab.mercurial-scm.org/D8644

File last commit:

r43346:2372284d default
r45607:cfe0f491 default
Show More
svnurlof.py
20 lines | 367 B | text/x-python | PythonLexer
Augie Fackler
tests: make and use a new `svnurlof.py` helper for constructing svn urls...
r41621 from __future__ import absolute_import, print_function
import sys
from mercurial import (
pycompat,
util,
)
Augie Fackler
formatting: blacken the codebase...
r43346
Augie Fackler
tests: make and use a new `svnurlof.py` helper for constructing svn urls...
r41621 def main(argv):
enc = util.urlreq.quote(pycompat.sysbytes(argv[1]))
if pycompat.iswindows:
fmt = 'file:///%s'
else:
fmt = 'file://%s'
print(fmt % pycompat.sysstr(enc))
Augie Fackler
formatting: blacken the codebase...
r43346
Augie Fackler
tests: make and use a new `svnurlof.py` helper for constructing svn urls...
r41621 if __name__ == '__main__':
main(sys.argv)