[pypy-commit] pypy default: remove convenience file that conflicts with site-packages installed numpy

mattip noreply at buildbot.pypy.org
Mon Oct 14 22:00:57 CEST 2013


Author: Matti Picus <matti.picus at gmail.com>
Branch: 
Changeset: r67371:0e97c831046d
Date: 2013-10-14 06:40 +0300
http://bitbucket.org/pypy/pypy/changeset/0e97c831046d/

Log:	remove convenience file that conflicts with site-packages installed
	numpy

diff --git a/lib_pypy/numpy.py b/lib_pypy/numpy.py
deleted file mode 100644
--- a/lib_pypy/numpy.py
+++ /dev/null
@@ -1,12 +0,0 @@
-import warnings
-import sys
-if 'numpypy' not in sys.modules:
-    warnings.warn(
-        "The 'numpy' module of PyPy is in-development and not complete. "
-        "To avoid this warning, write 'import numpypy as numpy'. ",
-        UserWarning) # XXX is this the best warning type?
-
-from numpypy import *
-import numpypy
-__all__ = numpypy.__all__
-del numpypy


More information about the pypy-commit mailing list