Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
mercurial-devel
Manage
Activity
Members
Labels
Plan
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
mercurial
mercurial-devel
Commits
9e6b86a8
Commit
9e6b86a8
authored
4 years ago
by
Yuya Nishihara
Browse files
Options
Downloads
Patches
Plain Diff
dispatch: indent run() function
I'll add KeyboardInterrupt handling there.
parent
d50d922c
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
mercurial/dispatch.py
+32
-29
32 additions, 29 deletions
mercurial/dispatch.py
with
32 additions
and
29 deletions
mercurial/dispatch.py
+
32
−
29
View file @
9e6b86a8
...
...
@@ -104,8 +104,4 @@
def
run
():
"""
run the command in sys.argv
"""
initstdio
()
with
tracing
.
log
(
'
parse args into request
'
):
req
=
request
(
pycompat
.
sysargv
[
1
:])
err
=
None
try
:
...
...
@@ -111,11 +107,6 @@
try
:
status
=
dispatch
(
req
)
except
error
.
StdioError
as
e
:
err
=
e
status
=
-
1
# In all cases we try to flush stdio streams.
if
util
.
safehasattr
(
req
.
ui
,
b
'
fout
'
):
assert
req
.
ui
is
not
None
# help pytype
assert
req
.
ui
.
fout
is
not
None
# help pytype
initstdio
()
with
tracing
.
log
(
'
parse args into request
'
):
req
=
request
(
pycompat
.
sysargv
[
1
:])
err
=
None
try
:
...
...
@@ -121,6 +112,6 @@
try
:
req
.
ui
.
fout
.
flush
(
)
except
IO
Error
as
e
:
status
=
dispatch
(
req
)
except
error
.
Stdio
Error
as
e
:
err
=
e
status
=
-
1
...
...
@@ -124,17 +115,13 @@
err
=
e
status
=
-
1
if
util
.
safehasattr
(
req
.
ui
,
b
'
ferr
'
):
assert
req
.
ui
is
not
None
# help pytype
assert
req
.
ui
.
ferr
is
not
None
# help pytype
try
:
if
err
is
not
None
and
err
.
errno
!=
errno
.
EPIPE
:
req
.
ui
.
ferr
.
write
(
b
'
abort: %s
\n
'
%
encoding
.
strtolocal
(
err
.
strerror
)
)
req
.
ui
.
ferr
.
flush
()
# There's not much we can do about an I/O error here. So (possibly)
# change the status code and move on.
except
IOError
:
status
=
-
1
# In all cases we try to flush stdio streams.
if
util
.
safehasattr
(
req
.
ui
,
b
'
fout
'
):
assert
req
.
ui
is
not
None
# help pytype
assert
req
.
ui
.
fout
is
not
None
# help pytype
try
:
req
.
ui
.
fout
.
flush
()
except
IOError
as
e
:
err
=
e
status
=
-
1
...
...
@@ -140,5 +127,21 @@
_silencestdio
()
if
util
.
safehasattr
(
req
.
ui
,
b
'
ferr
'
):
assert
req
.
ui
is
not
None
# help pytype
assert
req
.
ui
.
ferr
is
not
None
# help pytype
try
:
if
err
is
not
None
and
err
.
errno
!=
errno
.
EPIPE
:
req
.
ui
.
ferr
.
write
(
b
'
abort: %s
\n
'
%
encoding
.
strtolocal
(
err
.
strerror
)
)
req
.
ui
.
ferr
.
flush
()
# There's not much we can do about an I/O error here. So (possibly)
# change the status code and move on.
except
IOError
:
status
=
-
1
_silencestdio
()
finally
:
pass
sys
.
exit
(
status
&
255
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment