diff options
author | Andre Delfino <adelfino@gmail.com> | 2020-09-15 20:13:26 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-15 20:13:26 (GMT) |
commit | ac0333e1e117b7f61ed7ef1dbcdb6e515ada603b (patch) | |
tree | 778d25829c59eb1c2c2b8e1461b50b87ba9ee900 /Doc/library/sys.rst | |
parent | 5a565b3d7c31f9f402306a9bd58df36e4fe66ba4 (diff) | |
download | cpython-ac0333e1e117b7f61ed7ef1dbcdb6e515ada603b.zip cpython-ac0333e1e117b7f61ed7ef1dbcdb6e515ada603b.tar.gz cpython-ac0333e1e117b7f61ed7ef1dbcdb6e515ada603b.tar.bz2 |
Fix all Python Cookbook links (#22205)
Diffstat (limited to 'Doc/library/sys.rst')
-rw-r--r-- | Doc/library/sys.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/sys.rst b/Doc/library/sys.rst index d201d70..aa417ed 100644 --- a/Doc/library/sys.rst +++ b/Doc/library/sys.rst @@ -679,7 +679,7 @@ always available. additional garbage collector overhead if the object is managed by the garbage collector. - See `recursive sizeof recipe <https://code.activestate.com/recipes/577504>`_ + See `recursive sizeof recipe <https://github.com/ActiveState/code/tree/master/recipes/Python/577504_Compute_Memory_footprint_object_its/recipe-577504.py>`_ for an example of using :func:`getsizeof` recursively to find the size of containers and all their contents. |