util: drop util.Abort in favor of error.Abort (API)
IIRC, error.Abort exists since Mercurial 1.2, so it should be pretty easy
for extensions authors to update their code.
.. api::
The util.Abort alias has been removed. Use error.Abort.
--- a/mercurial/util.py Sat Mar 24 14:09:44 2018 +0900
+++ b/mercurial/util.py Sat Mar 24 14:13:37 2018 +0900
@@ -1586,8 +1586,6 @@
if buf:
yield ''.join(buf)
-Abort = error.Abort
-
def always(fn):
return True