]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
[3.13] Fix outdated reference link in collections module (gh-130349) (gh-130386)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Fri, 21 Feb 2025 00:22:05 +0000 (01:22 +0100)
committerGitHub <noreply@github.com>
Fri, 21 Feb 2025 00:22:05 +0000 (00:22 +0000)
Lib/collections/__init__.py

index d29afffebf8447e6c12d2d447b0ed4a1782a791b..0fe81edcbb735be302497433cb965c1486946b93 100644 (file)
@@ -592,7 +592,7 @@ class Counter(dict):
     # References:
     #   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://www.java2s.com/Tutorial/Cpp/0380__set-multiset/Catalog0380__set-multiset.htm
     #   http://code.activestate.com/recipes/259174/
     #   Knuth, TAOCP Vol. II section 4.6.3