From 7b009c102ec67cc253b1017d2ee448b5cea44cd0 Mon Sep 17 00:00:00 2001 From: Kyle Meyer Date: Sun, 5 Jan 2014 17:41:58 -0500 Subject: [PATCH] Rename sample.py to sampling.py This avoids the naming conflict between the module pymc.sample and the function pymc.sample, which is imported in the top-level __init__.py. The conflict prevented direct access to the module. --- pymc/__init__.py | 2 +- pymc/{sample.py => sampling.py} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename pymc/{sample.py => sampling.py} (100%) diff --git a/pymc/__init__.py b/pymc/__init__.py index 0ca5cdaa2f..cec6bcf4f2 100644 --- a/pymc/__init__.py +++ b/pymc/__init__.py @@ -5,7 +5,7 @@ from .math import * from .trace import * -from .sample import * +from .sampling import * from .step_methods import * from .tuning import * diff --git a/pymc/sample.py b/pymc/sampling.py similarity index 100% rename from pymc/sample.py rename to pymc/sampling.py