[pypy-commit] pypy default: Move fromnumeric into core/ subdirectory to follow numpy's layout

mikefc noreply at buildbot.pypy.org
Wed Jan 18 00:11:10 CET 2012


Author: mikefc
Branch: 
Changeset: r51428:e4314d54ea7f
Date: 2012-01-18 09:10 +1000
http://bitbucket.org/pypy/pypy/changeset/e4314d54ea7f/

Log:	Move fromnumeric into core/ subdirectory to follow numpy's layout

diff --git a/lib_pypy/numpypy/__init__.py b/lib_pypy/numpypy/__init__.py
--- a/lib_pypy/numpypy/__init__.py
+++ b/lib_pypy/numpypy/__init__.py
@@ -1,2 +1,2 @@
 from _numpypy import *
-from .fromnumeric import *
+from .core import *
diff --git a/lib_pypy/numpypy/core/__init__.py b/lib_pypy/numpypy/core/__init__.py
new file mode 100644
--- /dev/null
+++ b/lib_pypy/numpypy/core/__init__.py
@@ -0,0 +1,1 @@
+from .fromnumeric import *
diff --git a/lib_pypy/numpypy/fromnumeric.py b/lib_pypy/numpypy/core/fromnumeric.py
rename from lib_pypy/numpypy/fromnumeric.py
rename to lib_pypy/numpypy/core/fromnumeric.py


More information about the pypy-commit mailing list