summaryrefslogtreecommitdiff
path: root/numpy/polynomial/legendre.py
diff options
context:
space:
mode:
Diffstat (limited to 'numpy/polynomial/legendre.py')
-rw-r--r--numpy/polynomial/legendre.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/numpy/polynomial/legendre.py b/numpy/polynomial/legendre.py
index e97de703f..c91cb72ec 100644
--- a/numpy/polynomial/legendre.py
+++ b/numpy/polynomial/legendre.py
@@ -1712,7 +1712,6 @@ def leggauss(deg):
c = np.array([0]*deg + [1])
m = legcompanion(c)
x = la.eigvalsh(m)
- x.sort()
# improve roots by one application of Newton
dy = legval(x, c)