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/doc/subclassing.py | |
parent | bf4a3e59b0cfb1e999845dc5228dfa1f54851b9f (diff) | |
download | numpy-83828f52b287fefb3d8753a21bd3441997a4d687.tar.gz |
HTTP -> HTTPS, and other linkrot fixes
Diffstat (limited to 'numpy/doc/subclassing.py')
-rw-r--r-- | numpy/doc/subclassing.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/doc/subclassing.py b/numpy/doc/subclassing.py index 3be3d94b3..4b983893a 100644 --- a/numpy/doc/subclassing.py +++ b/numpy/doc/subclassing.py @@ -108,7 +108,7 @@ A brief Python primer on ``__new__`` and ``__init__`` ``__new__`` is a standard Python method, and, if present, is called before ``__init__`` when we create a class instance. See the `python __new__ documentation -<http://docs.python.org/reference/datamodel.html#object.__new__>`_ for more detail. +<https://docs.python.org/reference/datamodel.html#object.__new__>`_ for more detail. For example, consider the following Python code: |