Your message dated Tue, 4 Aug 2009 12:26:03 +0200
with message-id <[email protected]>
and subject line Re: python-scipy: scipy.interpolate.lagrange() does not work
has caused the Debian Bug report #512549,
regarding python-scipy: scipy.interpolate.lagrange() does not work
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)


-- 
512549: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=512549
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: python-scipy
Version: 0.6.0-12
Severity: important
Tags: patch

the scipy.interpolate.lagrange() function currently does not work because 
poly1d is not imported ahead of time.  i have created a patch that fixes the 
problem (see below).  note that i tried to follow the convention with "import 
scipy.poly1d as poly1d", but that syntax fails for some reason.  thanks.

--- interpolate.py      2009-01-21 12:19:49.000000000 -0500
+++ /usr/lib/python2.5/site-packages/scipy/interpolate/interpolate.py   
2009-01-21 11:57:07.000000000 -0500
@@ -12,6 +12,7 @@
 import numpy as np
 import scipy.linalg as slin
 import scipy.special as spec
+from scipy import poly1d
 import math
 
 import fitpack



--- End Message ---
--- Begin Message ---
Package: python-scipy
Version: 0.7.0-1

* Michael S. Gilbert <[email protected]>, 2009-01-21, 12:29:
the scipy.interpolate.lagrange() function currently does not work because poly1d is not imported ahead of time.
Thanks for your report. The bug has been fixed upstream.

--
Jakub Wilk


--- End Message ---
_______________________________________________
Python-modules-team mailing list
[email protected]
http://lists.alioth.debian.org/mailman/listinfo/python-modules-team

Reply via email to