From 1a6c6ab8e89e57bfbb7b709e3a523437c5e3ef50 Mon Sep 17 00:00:00 2001 From: David Lord Date: Fri, 20 Jan 2017 12:03:51 -0800 Subject: [PATCH] drop internal function names --- jinja2/tests.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/jinja2/tests.py b/jinja2/tests.py index 23d3677ad..0adc3d4db 100644 --- a/jinja2/tests.py +++ b/jinja2/tests.py @@ -139,11 +139,6 @@ def test_in(value, seq): return value in seq -# deprecated aliases, use the operator module instead -test_equalto = operator.eq -test_greaterthan = operator.gt -test_lessthan = operator.lt - TESTS = { 'odd': test_odd, 'even': test_even,