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/faq | |
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/faq')
-rw-r--r-- | Doc/faq/programming.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/faq/programming.rst b/Doc/faq/programming.rst index 66d210a..eecbbf4 100644 --- a/Doc/faq/programming.rst +++ b/Doc/faq/programming.rst @@ -1141,7 +1141,7 @@ How do you remove duplicates from a list? See the Python Cookbook for a long discussion of many ways to do this: - https://code.activestate.com/recipes/52560/ + https://github.com/ActiveState/code/tree/master/recipes/Python/52560_Remove_duplicates/recipe-52560.py If you don't mind reordering the list, sort it and then scan from the end of the list, deleting duplicates as you go:: |