From c6775b19677b92954357655cc8957a935263ebc4 Mon Sep 17 00:00:00 2001 From: Mike Jarvis Date: Wed, 13 Sep 2023 11:22:42 -0400 Subject: [PATCH] Rename corr*ex.py -> exec_corr*.py --- treecorr/__init__.py | 4 ++-- treecorr/{corr2ex.py => exec_corr2.py} | 0 treecorr/{corr3ex.py => exec_corr3.py} | 0 3 files changed, 2 insertions(+), 2 deletions(-) rename treecorr/{corr2ex.py => exec_corr2.py} (100%) rename treecorr/{corr3ex.py => exec_corr3.py} (100%) diff --git a/treecorr/__init__.py b/treecorr/__init__.py index d60130e8..955632f4 100644 --- a/treecorr/__init__.py +++ b/treecorr/__init__.py @@ -62,5 +62,5 @@ from .kkkcorrelation import KKKCorrelation, KKKCrossCorrelation from .gggcorrelation import GGGCorrelation, GGGCrossCorrelation -from .corr2ex import corr2, print_corr2_params, corr2_valid_params, corr2_aliases -from .corr3ex import corr3, print_corr3_params, corr3_valid_params, corr3_aliases +from .exec_corr2 import corr2, print_corr2_params, corr2_valid_params, corr2_aliases +from .exec_corr3 import corr3, print_corr3_params, corr3_valid_params, corr3_aliases diff --git a/treecorr/corr2ex.py b/treecorr/exec_corr2.py similarity index 100% rename from treecorr/corr2ex.py rename to treecorr/exec_corr2.py diff --git a/treecorr/corr3ex.py b/treecorr/exec_corr3.py similarity index 100% rename from treecorr/corr3ex.py rename to treecorr/exec_corr3.py