From cfbc8a442d2175b49aaa274dc5c76dad80c8d5a5 Mon Sep 17 00:00:00 2001 From: Sergey B Kirpichev Date: Wed, 3 May 2023 11:29:40 +0300 Subject: [PATCH] Reorganize imports in mpmath/tests/test_gammazeta.py (no star imports) --- mpmath/tests/test_gammazeta.py | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/mpmath/tests/test_gammazeta.py b/mpmath/tests/test_gammazeta.py index 1439312d..dd0c3529 100644 --- a/mpmath/tests/test_gammazeta.py +++ b/mpmath/tests/test_gammazeta.py @@ -1,5 +1,12 @@ -from mpmath import * -from mpmath.libmp import round_up, from_float, mpf_zeta_int +from mpmath import (altzeta, apery, barnesg, bell, bernfrac, bernoulli, + bernpoly, beta, binomial, catalan, digamma, e, euler, + eulerpoly, fac, fac2, factorial, fadd, ff, findroot, fp, + fraction, gamma, gammaprod, harmonic, hyperfac, inf, isnan, + j, log, loggamma, mp, mpc, mpf, mpmathify, nan, pi, + polyexp, polylog, primezeta, psi, rf, rgamma, sech, + siegelz, sinc, sqrt, stieltjes, superfac, zeta) +from mpmath.libmp import from_float, mpf_zeta_int, round_up + def test_zeta_int_bug(): assert mpf_zeta_int(0, 10) == from_float(-0.5)