summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorYobmod <yobmod@gmail.com>2021-07-19 20:26:53 +0100
committerYobmod <yobmod@gmail.com>2021-07-19 20:26:53 +0100
commit600df043e76924d43a4f9f88f4e3241740f34c77 (patch)
tree8514389e82efdcdcdeaab5d3a85553883f28117c /test
parent017b0d4b19127868ccb8ee616f64734b48f6e620 (diff)
downloadgitpython-600df043e76924d43a4f9f88f4e3241740f34c77.tar.gz
Rmv old py2.7 __future__ imports
Diffstat (limited to 'test')
-rw-r--r--test/lib/helper.py2
-rw-r--r--test/performance/test_commit.py1
-rw-r--r--test/performance/test_odb.py2
-rw-r--r--test/performance/test_streams.py2
-rw-r--r--test/test_commit.py2
5 files changed, 0 insertions, 9 deletions
diff --git a/test/lib/helper.py b/test/lib/helper.py
index 5dde7b04..632d6af9 100644
--- a/test/lib/helper.py
+++ b/test/lib/helper.py
@@ -3,8 +3,6 @@
#
# This module is part of GitPython and is released under
# the BSD License: http://www.opensource.org/licenses/bsd-license.php
-from __future__ import print_function
-
import contextlib
from functools import wraps
import gc
diff --git a/test/performance/test_commit.py b/test/performance/test_commit.py
index 4617b052..8158a1e6 100644
--- a/test/performance/test_commit.py
+++ b/test/performance/test_commit.py
@@ -3,7 +3,6 @@
#
# This module is part of GitPython and is released under
# the BSD License: http://www.opensource.org/licenses/bsd-license.php
-from __future__ import print_function
from io import BytesIO
from time import time
import sys
diff --git a/test/performance/test_odb.py b/test/performance/test_odb.py
index 8bd614f2..c9521c56 100644
--- a/test/performance/test_odb.py
+++ b/test/performance/test_odb.py
@@ -1,6 +1,4 @@
"""Performance tests for object store"""
-from __future__ import print_function
-
import sys
from time import time
diff --git a/test/performance/test_streams.py b/test/performance/test_streams.py
index edf32c91..28e6b13e 100644
--- a/test/performance/test_streams.py
+++ b/test/performance/test_streams.py
@@ -1,6 +1,4 @@
"""Performance data streaming performance"""
-from __future__ import print_function
-
import os
import subprocess
import sys
diff --git a/test/test_commit.py b/test/test_commit.py
index 670068e5..67dc7d73 100644
--- a/test/test_commit.py
+++ b/test/test_commit.py
@@ -4,8 +4,6 @@
#
# This module is part of GitPython and is released under
# the BSD License: http://www.opensource.org/licenses/bsd-license.php
-from __future__ import print_function
-
from datetime import datetime
from io import BytesIO
import re