From: Redddy <78539407+reddevilmidzy@users.noreply.github.com> Date: Thu, 20 Feb 2025 23:58:58 +0000 (+0900) Subject: Fix outdated reference link in collections module (gh-130349) X-Git-Tag: v3.14.0a6~329 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d63af9540f6163104699a6e09267696307f0d002;p=thirdparty%2FPython%2Fcpython.git Fix outdated reference link in collections module (gh-130349) --- diff --git a/Lib/collections/__init__.py b/Lib/collections/__init__.py index 78229ac54b80..d2ddc1cd9ec2 100644 --- a/Lib/collections/__init__.py +++ b/Lib/collections/__init__.py @@ -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