diff options
author | wangzihao <wangzihao@yovole.com> | 2020-10-09 18:01:09 +0800 |
---|---|---|
committer | wangzihao <wangzihao@yovole.com> | 2020-10-09 18:08:32 +0800 |
commit | 91ba6d1d7cffea2c97259f7abf044d00cffbccb9 (patch) | |
tree | 2032f119fb59798a956bdb175e836a61a0cbf3be /trove/common/stream_codecs.py | |
parent | c1be8a41d984aa88addfeaea2dc3c2392bfa2dcd (diff) | |
download | trove-91ba6d1d7cffea2c97259f7abf044d00cffbccb9.tar.gz |
Remove six.moves
Remove six.moves Replace the following items with Python 3 style code.
- six.moves.urllib
- six.moves.http_client
- six.moves.configparser
- six.moves.cStringIO
Change-Id: I004b6b9a81079c67451395bfe31ec75d58802c16
Diffstat (limited to 'trove/common/stream_codecs.py')
-rw-r--r-- | trove/common/stream_codecs.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/trove/common/stream_codecs.py b/trove/common/stream_codecs.py index 2aff5640..824273d5 100644 --- a/trove/common/stream_codecs.py +++ b/trove/common/stream_codecs.py @@ -16,12 +16,12 @@ import abc import ast import csv +import configparser import io import re import sys import six -from six.moves import configparser import xmltodict import yaml |