Merge "Unify using six.moves.range rename everywhere"

This commit is contained in:
Jenkins 2015-03-04 16:32:34 +00:00 committed by Gerrit Code Review
commit 547dc2fcfb
4 changed files with 8 additions and 0 deletions

View File

@ -26,6 +26,8 @@ from oslo.vmware import constants
from oslo_config import cfg
from oslo_utils import excutils
from oslo_utils import units
# NOTE(jokke): simplified transition to py3, behaves like py2 xrange
from six.moves import range
import six.moves.urllib.parse as urlparse
import glance_store

View File

@ -32,6 +32,8 @@ import httplib2
import logging
from oslo.serialization import jsonutils
# NOTE(jokke): simplified transition to py3, behaves like py2 xrange
from six.moves import range
import six.moves.urllib.parse as urlparse
from glance_store import exceptions

View File

@ -28,6 +28,8 @@ import uuid
import fixtures
from oslo_utils import units
import six
# NOTE(jokke): simplified transition to py3, behaves like py2 xrange
from six.moves import range
from glance_store._drivers.filesystem import ChunkedFile
from glance_store._drivers.filesystem import Store

View File

@ -28,6 +28,8 @@ from oslo_utils import units
from oslotest import moxstubout
import requests_mock
import six
# NOTE(jokke): simplified transition to py3, behaves like py2 xrange
from six.moves import range
import StringIO
import swiftclient