]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Fix outdated reference link in collections module (gh-130349)
authorRedddy <78539407+reddevilmidzy@users.noreply.github.com>
Thu, 20 Feb 2025 23:58:58 +0000 (08:58 +0900)
committerGitHub <noreply@github.com>
Thu, 20 Feb 2025 23:58:58 +0000 (23:58 +0000)
Lib/collections/__init__.py

index 78229ac54b80dac71e5ffee4bcee452ec32e8626..d2ddc1cd9ec2ea2b59462cc22e45d61d01a02629 100644 (file)
@@ -595,7 +595,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