From 9b3812a0c646ee14a6f102e6dc87298d5c255cec Mon Sep 17 00:00:00 2001 From: Federico Caselli Date: Thu, 8 Oct 2020 21:01:19 +0200 Subject: Drop python 3.5 support Fixes: #5634 Change-Id: Ie8d4076ee35234b535a04e6fb9321096df3f648b --- lib/sqlalchemy/testing/util.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'lib/sqlalchemy/testing') diff --git a/lib/sqlalchemy/testing/util.py b/lib/sqlalchemy/testing/util.py index 586974f11..c52dc4a19 100644 --- a/lib/sqlalchemy/testing/util.py +++ b/lib/sqlalchemy/testing/util.py @@ -17,7 +17,6 @@ from ..util import defaultdict from ..util import has_refcount_gc from ..util import inspect_getfullargspec from ..util import py2k -from ..util import py36 if not has_refcount_gc: @@ -54,7 +53,7 @@ def picklers(): yield pickle_.loads, lambda d: pickle_.dumps(d, protocol) -if py2k or not py36: +if py2k: def random_choices(population, k=1): pop = list(population) -- cgit v1.2.1