From 8baeec42370b0fe55df280a3cbcc8271d8363850 Mon Sep 17 00:00:00 2001 From: Alvin Penner Date: Mon, 19 Jul 2010 18:54:52 -0400 Subject: patch by Daniel Blueman for Bug 590079 Fixed bugs: - https://launchpad.net/bugs/590079 (bzr r9631) --- share/extensions/funcplot.py | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) (limited to 'share/extensions/funcplot.py') diff --git a/share/extensions/funcplot.py b/share/extensions/funcplot.py index e5f93d430..126429853 100644 --- a/share/extensions/funcplot.py +++ b/share/extensions/funcplot.py @@ -70,10 +70,14 @@ def drawfunction(xstart, xend, ybottom, ytop, samples, width, height, left, bott ytop = (bottom+height-yzero)/scaley # functions specified by the user - if fx != "": - f = eval('lambda x: ' + fx.strip('"')) - if fpx != "": - fp = eval('lambda x: ' + fpx.strip('"')) + try: + if fx != "": + f = eval('lambda x: ' + fx.strip('"')) + if fpx != "": + fp = eval('lambda x: ' + fpx.strip('"')) + # handle incomplete/invalid function gracefully + except SyntaxError: + return [] # step is the distance between nodes on x step = (xend - xstart) / (samples-1) -- cgit v1.2.3