summaryrefslogtreecommitdiffstats
path: root/Lib/collections
diff options
context:
space:
mode:
authorAndre Delfino <adelfino@gmail.com>2020-09-15 20:13:26 (GMT)
committerGitHub <noreply@github.com>2020-09-15 20:13:26 (GMT)
commitac0333e1e117b7f61ed7ef1dbcdb6e515ada603b (patch)
tree778d25829c59eb1c2c2b8e1461b50b87ba9ee900 /Lib/collections
parent5a565b3d7c31f9f402306a9bd58df36e4fe66ba4 (diff)
downloadcpython-ac0333e1e117b7f61ed7ef1dbcdb6e515ada603b.zip
cpython-ac0333e1e117b7f61ed7ef1dbcdb6e515ada603b.tar.gz
cpython-ac0333e1e117b7f61ed7ef1dbcdb6e515ada603b.tar.bz2
Fix all Python Cookbook links (#22205)
Diffstat (limited to 'Lib/collections')
-rw-r--r--Lib/collections/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/collections/__init__.py b/Lib/collections/__init__.py
index 5d75501..f4da9d0 100644
--- a/Lib/collections/__init__.py
+++ b/Lib/collections/__init__.py
@@ -574,7 +574,7 @@ class Counter(dict):
# http://en.wikipedia.org/wiki/Multiset
# http://www.gnu.org/software/smalltalk/manual-base/html_node/Bag.html
# http://www.demo2s.com/Tutorial/Cpp/0380__set-multiset/Catalog0380__set-multiset.htm
- # http://code.activestate.com/recipes/259174/
+ # https://github.com/ActiveState/code/tree/master/recipes/Python/259174_bag_collection_class/recipe-259174.py
# Knuth, TAOCP Vol. II section 4.6.3
def __init__(self, iterable=None, /, **kwds):