Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
logilab-common
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
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
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
open-source
logilab-common
Commits
c3246e8475ed
Commit
c3246e8475ed
authored
1 year ago
by
Laurent Peuch
Browse files
Options
Downloads
Patches
Plain Diff
feat!: remove deprecated code logilab.common.shellutils.Execute
parent
c13b8fa39239
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!79
remove all deprecated code
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
logilab/common/shellutils.py
+0
-14
0 additions, 14 deletions
logilab/common/shellutils.py
with
0 additions
and
14 deletions
logilab/common/shellutils.py
+
0
−
14
View file @
c3246e84
...
...
@@ -30,10 +30,9 @@
import
fnmatch
import
string
import
random
import
subprocess
import
warnings
from
os.path
import
exists
,
isdir
,
islink
,
basename
,
join
from
_io
import
StringIO
from
typing
import
Any
,
Callable
,
Optional
,
List
,
Union
,
Iterator
,
Tuple
from
logilab.common
import
STD_BLACKLIST
,
_handle_blacklist
...
...
@@ -34,10 +33,9 @@
import
warnings
from
os.path
import
exists
,
isdir
,
islink
,
basename
,
join
from
_io
import
StringIO
from
typing
import
Any
,
Callable
,
Optional
,
List
,
Union
,
Iterator
,
Tuple
from
logilab.common
import
STD_BLACKLIST
,
_handle_blacklist
from
logilab.common.deprecation
import
callable_deprecated
class
tempdir
(
object
):
...
...
@@ -234,18 +232,6 @@
outfile
.
close
()
@callable_deprecated
(
"
Use subprocess.Popen instead
"
)
class
Execute
:
"""
This is a deadlock safe version of popen2 (no stdin), that returns
an object with errorlevel, out and err.
"""
def
__init__
(
self
,
command
):
cmd
=
subprocess
.
Popen
(
command
,
shell
=
True
,
stdout
=
subprocess
.
PIPE
,
stderr
=
subprocess
.
PIPE
)
self
.
out
,
self
.
err
=
cmd
.
communicate
()
self
.
status
=
os
.
WEXITSTATUS
(
cmd
.
returncode
)
class
ProgressBar
(
object
):
"""
A simple text progression bar.
"""
...
...
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