Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
LOFAR
Manage
Activity
Members
Labels
Plan
Issues
Wiki
Jira issues
Open Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
RadioObservatory
LOFAR
Commits
58e507d0
Commit
58e507d0
authored
2 years ago
by
Jorrit Schaap
Browse files
Options
Downloads
Patches
Plain Diff
TMSS-2146
: type hinting and logging
parent
6b3932eb
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!1000
TMSS-2146
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
LCS/PyCommon/subprocess_utils.py
+3
-3
3 additions, 3 deletions
LCS/PyCommon/subprocess_utils.py
with
3 additions
and
3 deletions
LCS/PyCommon/subprocess_utils.py
+
3
−
3
View file @
58e507d0
...
@@ -25,7 +25,7 @@ def wrap_composite_command(cmd):
...
@@ -25,7 +25,7 @@ def wrap_composite_command(cmd):
return
'''"
%s
"
'''
%
(
cmd
if
isinstance
(
cmd
,
str
)
else
'
'
.
join
(
cmd
))
return
'''"
%s
"
'''
%
(
cmd
if
isinstance
(
cmd
,
str
)
else
'
'
.
join
(
cmd
))
def
_convert_bytes_tuple_to_strings
(
bytes_tuple
):
def
_convert_bytes_tuple_to_strings
(
bytes_tuple
:
(
bytes
,
bytes
))
->
(
str
,
str
):
"""
Helper function for subprocess.communicate() and/or subprocess.check_output which changed from python2 to python3.
"""
Helper function for subprocess.communicate() and/or subprocess.check_output which changed from python2 to python3.
This function returns the bytes in the bytes_tuple_tuple to utf-8 strings.
This function returns the bytes in the bytes_tuple_tuple to utf-8 strings.
You can use this to get the
"
normal
"
python2 subprocess behaviour back for functions like check_output and/or communicate.
"""
You can use this to get the
"
normal
"
python2 subprocess behaviour back for functions like check_output and/or communicate.
"""
...
@@ -34,7 +34,7 @@ def _convert_bytes_tuple_to_strings(bytes_tuple):
...
@@ -34,7 +34,7 @@ def _convert_bytes_tuple_to_strings(bytes_tuple):
else
x
else
x
for
x
in
bytes_tuple
)
for
x
in
bytes_tuple
)
def
communicate_returning_strings
(
proc
,
input
=
None
):
def
communicate_returning_strings
(
proc
,
input
=
None
)
->
(
str
,
str
)
:
"""
Helper function for subprocess.communicate() which changed from python2 to python3.
"""
Helper function for subprocess.communicate() which changed from python2 to python3.
This function waits for the subprocess to finish and returns the stdout and stderr as utf-8 strings, just like python2 did.
"""
This function waits for the subprocess to finish and returns the stdout and stderr as utf-8 strings, just like python2 did.
"""
return
_convert_bytes_tuple_to_strings
(
proc
.
communicate
(
input
=
input
))
return
_convert_bytes_tuple_to_strings
(
proc
.
communicate
(
input
=
input
))
...
@@ -135,7 +135,7 @@ class PipeReader:
...
@@ -135,7 +135,7 @@ class PipeReader:
logger
.
debug
(
"
stopping %s
"
,
self
.
__thread
.
name
)
logger
.
debug
(
"
stopping %s
"
,
self
.
__thread
.
name
)
self
.
__stop_event
.
set
()
self
.
__stop_event
.
set
()
self
.
__thread
.
join
()
self
.
__thread
.
join
()
logger
.
info
(
"
stopped %s
"
,
self
.
__thread
.
name
)
logger
.
debug
(
"
stopped %s
"
,
self
.
__thread
.
name
)
self
.
__thread
=
None
self
.
__thread
=
None
def
__enter__
(
self
):
def
__enter__
(
self
):
...
...
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