remove unused imports and useless empty class Base

Change-Id: I78dbb390cf0afe03d4bcf1aa9ffc9497392579dd
This commit is contained in:
Ionuț Arțăriși
2012-04-24 17:55:59 +02:00
parent ebfa3dd2c1
commit 92312f5631

View File

@@ -14,32 +14,23 @@
# See the License for the specific language governing permissions and # See the License for the specific language governing permissions and
# limitations under the License. # limitations under the License.
import array
from datetime import datetime from datetime import datetime
import locale import locale
import os
import os.path
import random import random
import StringIO import StringIO
import sys
import time import time
import threading import threading
import uuid import uuid
import unittest import unittest
import urllib
from test import get_config from test import get_config
from swift import Account, AuthenticationFailed, Connection, Container, \ from test.functional.swift import Account, Connection, File, ResponseError
File, ResponseError
config = get_config() config = get_config()
locale.setlocale(locale.LC_COLLATE, config.get('collate', 'C')) locale.setlocale(locale.LC_COLLATE, config.get('collate', 'C'))
class Base:
pass
def chunks(s, length=3): def chunks(s, length=3):
i, j = 0, length i, j = 0, length
while i < len(s): while i < len(s):