Mercurial > public > mercurial-scm > hg-stable
comparison mercurial/util.py @ 31579:55c6788c54e2
py3: stop exporting urlparse from pycompat and util (API)
There are no consumers of this in tree.
Functions formerly available on this object/module can now be accessed
via {pycompat,util}.urlreq.
author | Gregory Szorc <gregory.szorc@gmail.com> |
---|---|
date | Tue, 21 Mar 2017 22:47:49 -0700 |
parents | 4ebecf331d7d |
children | e506e461c7a9 |
comparison
equal
deleted
inserted
replaced
31578:c0c4e14ee597 | 31579:55c6788c54e2 |
---|---|
58 stderr = pycompat.stderr | 58 stderr = pycompat.stderr |
59 stdin = pycompat.stdin | 59 stdin = pycompat.stdin |
60 stdout = pycompat.stdout | 60 stdout = pycompat.stdout |
61 stringio = pycompat.stringio | 61 stringio = pycompat.stringio |
62 urlerr = pycompat.urlerr | 62 urlerr = pycompat.urlerr |
63 urlparse = pycompat.urlparse | |
64 urlreq = pycompat.urlreq | 63 urlreq = pycompat.urlreq |
65 xmlrpclib = pycompat.xmlrpclib | 64 xmlrpclib = pycompat.xmlrpclib |
66 | 65 |
67 def isatty(fp): | 66 def isatty(fp): |
68 try: | 67 try: |