diff options
Diffstat (limited to 'numpy/core/src/multiarraymodule.c')
-rw-r--r-- | numpy/core/src/multiarraymodule.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/numpy/core/src/multiarraymodule.c b/numpy/core/src/multiarraymodule.c index 381b72c2c..df61aec31 100644 --- a/numpy/core/src/multiarraymodule.c +++ b/numpy/core/src/multiarraymodule.c @@ -8520,6 +8520,15 @@ PyMODINIT_FUNC initmultiarray(void) { if (!m) { goto err; } + +#ifdef MS_WIN64 + PyErr_WarnEx(PyExc_Warning, + "Windows 64 bits support is experimental, and only available for \n" \ + "testing. You are advised not to use it for production. \n\n" \ + "CRASHES ARE TO BE EXPECTED - PLEASE REPORT THEM TO NUMPY DEVELOPERS", + 1); +#endif + /* Add some symbolic constants to the module */ d = PyModule_GetDict(m); if (!d) { |