Skip to content
Snippets Groups Projects
Commit a85d4d70 authored by Anton Akhmerov's avatar Anton Akhmerov Committed by Christoph Groth
Browse files

improve comment regarding scipy monkey-patching

parent 84f2e1b4
No related branches found
No related tags found
No related merge requests found
......@@ -22,10 +22,9 @@ uses_umfpack = linsolve.isUmfpack
if uses_umfpack:
# This patches a memory leak in SciPy:
# http://projects.scipy.org/scipy/ticket/1597
# https://github.com/scipy/scipy/issues/2122
#
# TODO: Remove this code once it is likely that the official bug fix has
# reached all of our users.
# TODO: Remove this code once we depend on scipy >= 0.10.1.
def del_for_umfpackcontext(self):
self.free()
if not hasattr(umfpack.UmfpackContext, '__del__'):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment