From 5b47eff2f705d3310e4376e6481b7cb36935d097 Mon Sep 17 00:00:00 2001 From: Luke Campagnola Date: Mon, 24 Mar 2014 08:27:52 -0400 Subject: [PATCH] Disable weave by default. --- pyqtgraph/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyqtgraph/__init__.py b/pyqtgraph/__init__.py index 5f42e64f..2bad4982 100644 --- a/pyqtgraph/__init__.py +++ b/pyqtgraph/__init__.py @@ -52,7 +52,7 @@ CONFIG_OPTIONS = { 'background': 'k', ## default background for GraphicsWidget 'antialias': False, 'editorCommand': None, ## command used to invoke code editor from ConsoleWidgets - 'useWeave': True, ## Use weave to speed up some operations, if it is available + 'useWeave': False, ## Use weave to speed up some operations, if it is available 'weaveDebug': False, ## Print full error message if weave compile fails 'exitCleanup': True, ## Attempt to work around some exit crash bugs in PyQt and PySide 'enableExperimental': False, ## Enable experimental features (the curious can search for this key in the code)