]> git.saurik.com Git - wxWidgets.git/commitdiff
Don't show a dialog upon import when Numeric isn't installed
authorRobin Dunn <robin@alldunn.com>
Fri, 26 Jul 2002 01:51:29 +0000 (01:51 +0000)
committerRobin Dunn <robin@alldunn.com>
Fri, 26 Jul 2002 01:51:29 +0000 (01:51 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16280 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

wxPython/wxPython/lib/wxPlotCanvas.py

index 32498d735e87fbe7162018f1c59c503caa38ab6d..926333c92d05eb1efb869365e5f38d1b686b3c74 100644 (file)
@@ -27,15 +27,18 @@ try:
     import Numeric
 except:
     # bummer!
-    d = wx.wxMessageDialog(wx.NULL,
-    """This module requires the Numeric module, which could not be imported.
-It probably is not installed (it's not part of the standard Python
-distribution). See the Python site (http://www.python.org) for
-information on downloading source or binaries.""",
-    "Numeric not found")
-    if d.ShowModal() == wx.wxID_CANCEL:
-        d = wx.wxMessageDialog(wx.NULL, "I kid you not! Pressing Cancel won't help you!", "Not a joke", wx.wxOK)
-        d.ShowModal()
+    msg = """This module requires the Numeric module, which could not be
+imported.  It probably is not installed (it's not part of the standard
+Python distribution). See the Python site (http://www.python.org) for
+information on downloading source or binaries."""
+
+    if wxPlatform == '__WXMSW__':
+        d = wx.wxMessageDialog(wx.NULL, msg, "Numeric not found")
+        if d.ShowModal() == wx.wxID_CANCEL:
+            d = wx.wxMessageDialog(wx.NULL, "I kid you not! Pressing Cancel won't help you!", "Not a joke", wx.wxOK)
+            d.ShowModal()
+    else:
+        print msg
     raise ImportError
 
 #