diff options
author | Mike Toews <mwtoews@gmail.com> | 2018-06-16 18:18:19 +1200 |
---|---|---|
committer | Mike Toews <mwtoews@gmail.com> | 2018-06-16 18:18:19 +1200 |
commit | 83828f52b287fefb3d8753a21bd3441997a4d687 (patch) | |
tree | f62c5aa84a9db02f3b6460e66b56cd299e4a794f /numpy/lib/utils.py | |
parent | bf4a3e59b0cfb1e999845dc5228dfa1f54851b9f (diff) | |
download | numpy-83828f52b287fefb3d8753a21bd3441997a4d687.tar.gz |
HTTP -> HTTPS, and other linkrot fixes
Diffstat (limited to 'numpy/lib/utils.py')
-rw-r--r-- | numpy/lib/utils.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/numpy/lib/utils.py b/numpy/lib/utils.py index 1ecd334af..9678bab76 100644 --- a/numpy/lib/utils.py +++ b/numpy/lib/utils.py @@ -982,12 +982,12 @@ def _getmembers(item): #----------------------------------------------------------------------------- # The following SafeEval class and company are adapted from Michael Spencer's -# ASPN Python Cookbook recipe: -# http://aspn.activestate.com/ASPN/Cookbook/Python/Recipe/364469 +# ASPN Python Cookbook recipe: https://code.activestate.com/recipes/364469/ +# # Accordingly it is mostly Copyright 2006 by Michael Spencer. # The recipe, like most of the other ASPN Python Cookbook recipes was made # available under the Python license. -# http://www.python.org/license +# https://en.wikipedia.org/wiki/Python_License # It has been modified to: # * handle unary -/+ |