summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephen Finucane <sfinucan@redhat.com>2021-10-08 18:20:31 +0100
committerStephen Finucane <sfinucan@redhat.com>2021-10-21 17:14:45 +0100
commit728401bbd76afc4d31b4f22e44bf98d1de40ef46 (patch)
treeb2533e848547c20ab6363e2ca85cd5bec18cf6d8
parent30612bf62295720a21d39c4f589cfcefb7a86a2f (diff)
downloadpython-openstackclient-728401bbd76afc4d31b4f22e44bf98d1de40ef46.tar.gz
Remove remnants of 'six'
Just one entry left. Remove it. Change-Id: Ia12173ecb7f3fed4a1195a46ebf9b096d917b3b6 Signed-off-by: Stephen Finucane <sfinucan@redhat.com>
-rw-r--r--lower-constraints.txt1
-rw-r--r--openstackclient/tests/unit/common/test_progressbar.py11
2 files changed, 5 insertions, 7 deletions
diff --git a/lower-constraints.txt b/lower-constraints.txt
index 861749b7..b98b8432 100644
--- a/lower-constraints.txt
+++ b/lower-constraints.txt
@@ -81,7 +81,6 @@ requestsexceptions==1.2.0
rfc3986==0.3.1
Routes==2.3.1
simplejson==3.5.1
-six==1.15.0
statsd==3.2.1
stestr==1.0.0
stevedore==2.0.1
diff --git a/openstackclient/tests/unit/common/test_progressbar.py b/openstackclient/tests/unit/common/test_progressbar.py
index 7bc0b6ba..a624fc43 100644
--- a/openstackclient/tests/unit/common/test_progressbar.py
+++ b/openstackclient/tests/unit/common/test_progressbar.py
@@ -11,10 +11,9 @@
# under the License.
#
+import io
import sys
-import six
-
from openstackclient.common import progressbar
from openstackclient.tests.unit import utils
@@ -23,7 +22,7 @@ class TestProgressBarWrapper(utils.TestCase):
def test_iter_file_display_progress_bar(self):
size = 98304
- file_obj = six.StringIO('X' * size)
+ file_obj = io.StringIO('X' * size)
saved_stdout = sys.stdout
try:
sys.stdout = output = FakeTTYStdout()
@@ -41,7 +40,7 @@ class TestProgressBarWrapper(utils.TestCase):
def test_iter_file_no_tty(self):
size = 98304
- file_obj = six.StringIO('X' * size)
+ file_obj = io.StringIO('X' * size)
saved_stdout = sys.stdout
try:
sys.stdout = output = FakeNoTTYStdout()
@@ -56,7 +55,7 @@ class TestProgressBarWrapper(utils.TestCase):
sys.stdout = saved_stdout
-class FakeTTYStdout(six.StringIO):
+class FakeTTYStdout(io.StringIO):
"""A Fake stdout that try to emulate a TTY device as much as possible."""
def isatty(self):
@@ -67,7 +66,7 @@ class FakeTTYStdout(six.StringIO):
if data.startswith('\r'):
self.seek(0)
data = data[1:]
- return six.StringIO.write(self, data)
+ return io.StringIO.write(self, data)
class FakeNoTTYStdout(FakeTTYStdout):