diff options
author | Sebastian Thiel <byronimo@gmail.com> | 2015-01-04 14:25:39 +0100 |
---|---|---|
committer | Sebastian Thiel <byronimo@gmail.com> | 2015-01-04 14:25:39 +0100 |
commit | 1b9d3b961bdf79964b883d3179f085d8835e528d (patch) | |
tree | 7031b7853f92879ee2e106f1e4fbf302c5c20ea6 /git/test/performance/test_streams.py | |
parent | c80d727e374321573bb00e23876a67c77ff466e3 (diff) | |
download | gitpython-1b9d3b961bdf79964b883d3179f085d8835e528d.tar.gz |
Removed 'from X import *' whereever possible
Diffstat (limited to 'git/test/performance/test_streams.py')
-rw-r--r-- | git/test/performance/test_streams.py | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/git/test/performance/test_streams.py b/git/test/performance/test_streams.py index 18f19db3..48527f0e 100644 --- a/git/test/performance/test_streams.py +++ b/git/test/performance/test_streams.py @@ -1,20 +1,23 @@ """Performance data streaming performance""" - -from git.test.lib import * -from gitdb import * -from gitdb.util import bin_to_hex - from time import time import os import sys import subprocess +from git.test.lib import ( + with_rw_repo +) +from gitdb.util import bin_to_hex from gitdb.test.lib import make_memory_file -from lib import ( +from .lib import ( TestBigRepoR ) +from gitdb import ( + LooseObjectDB, + IStream +) class TestObjDBPerformance(TestBigRepoR): |