D708: bundle2: remove unnecessary try finally
durham (Durham Goode)
phabricator at mercurial-scm.org
Thu Sep 14 17:21:18 UTC 2017
durham updated this revision to Diff 1820.
REPOSITORY
rHG Mercurial
CHANGES SINCE LAST UPDATE
https://phab.mercurial-scm.org/D708?vs=1804&id=1820
REVISION DETAIL
https://phab.mercurial-scm.org/D708
AFFECTED FILES
mercurial/bundle2.py
CHANGE DETAILS
diff --git a/mercurial/bundle2.py b/mercurial/bundle2.py
--- a/mercurial/bundle2.py
+++ b/mercurial/bundle2.py
@@ -505,32 +505,28 @@
The part is guaranteed to have been fully consumed when the function exits
(even if an exception is raised)."""
- try:
- handler = _gethandler(op, part)
- if handler is None:
- return
+ handler = _gethandler(op, part)
+ if handler is None:
+ return
- # handler is called outside the above try block so that we don't
- # risk catching KeyErrors from anything other than the
- # parthandlermapping lookup (any KeyError raised by handler()
- # itself represents a defect of a different variety).
- output = None
- if op.captureoutput and op.reply is not None:
- op.ui.pushbuffer(error=True, subproc=True)
- output = ''
- try:
- handler(op, part)
- finally:
- if output is not None:
- output = op.ui.popbuffer()
- if output:
- outpart = op.reply.newpart('output', data=output,
- mandatory=False)
- outpart.addparam(
- 'in-reply-to', pycompat.bytestr(part.id), mandatory=False)
+ # handler is called outside the above try block so that we don't
+ # risk catching KeyErrors from anything other than the
+ # parthandlermapping lookup (any KeyError raised by handler()
+ # itself represents a defect of a different variety).
+ output = None
+ if op.captureoutput and op.reply is not None:
+ op.ui.pushbuffer(error=True, subproc=True)
+ output = ''
+ try:
+ handler(op, part)
finally:
- pass
-
+ if output is not None:
+ output = op.ui.popbuffer()
+ if output:
+ outpart = op.reply.newpart('output', data=output,
+ mandatory=False)
+ outpart.addparam(
+ 'in-reply-to', pycompat.bytestr(part.id), mandatory=False)
def decodecaps(blob):
"""decode a bundle2 caps bytes blob into a dictionary
To: durham, #hg-reviewers, indygreg
Cc: indygreg, mercurial-devel
More information about the Mercurial-devel
mailing list