Skip to content
Snippets Groups Projects
Commit c3246e8475ed authored by Laurent Peuch's avatar Laurent Peuch
Browse files

feat!: remove deprecated code logilab.common.shellutils.Execute

parent c13b8fa39239
No related branches found
No related tags found
1 merge request!79remove all deprecated code
......@@ -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."""
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment