From 914a18f5b0116b894d155fbb493d4e2c13acb529 Mon Sep 17 00:00:00 2001 From: Matthew Wampler-Doty Date: Wed, 30 Apr 2014 10:38:07 -0500 Subject: [PATCH] Moving `math.hy` so it doesn't clash with library math module; band aid around issue #583 (PEP 328 non-compliance) --- tests/__init__.py | 2 +- tests/native_tests/{math.hy => mathematics.hy} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename tests/native_tests/{math.hy => mathematics.hy} (100%) diff --git a/tests/__init__.py b/tests/__init__.py index 8f427f8..6faf8dc 100644 --- a/tests/__init__.py +++ b/tests/__init__.py @@ -4,7 +4,7 @@ import hy # noqa from .native_tests.cons import * # noqa from .native_tests.defclass import * # noqa -from .native_tests.math import * # noqa +from .native_tests.mathematics import * # noqa from .native_tests.native_macros import * # noqa from .native_tests.quote import * # noqa from .native_tests.language import * # noqa diff --git a/tests/native_tests/math.hy b/tests/native_tests/mathematics.hy similarity index 100% rename from tests/native_tests/math.hy rename to tests/native_tests/mathematics.hy