From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Fri, 21 Feb 2025 00:22:05 +0000 (+0100) Subject: [3.13] Fix outdated reference link in collections module (gh-130349) (gh-130386) X-Git-Tag: v3.13.3~237 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ea15cefbf71bab661e2c96f45757408b1bafc81d;p=thirdparty%2FPython%2Fcpython.git [3.13] Fix outdated reference link in collections module (gh-130349) (gh-130386) --- diff --git a/Lib/collections/__init__.py b/Lib/collections/__init__.py index d29afffebf84..0fe81edcbb73 100644 --- a/Lib/collections/__init__.py +++ b/Lib/collections/__init__.py @@ -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