https://github.com/python/cpython/commit/b912d2b24a3fbd552595e3584bf851f9a2c75127
commit: b912d2b24a3fbd552595e3584bf851f9a2c75127
branch: 3.12
author: Miss Islington (bot) <[email protected]>
committer: rhettinger <[email protected]>
date: 2024-03-31T21:24:28Z
summary:

[3.12] gh-117387 Remove hash mark from introductory text (GH-117409) (#gh-

files:
M Lib/collections/__init__.py

diff --git a/Lib/collections/__init__.py b/Lib/collections/__init__.py
index 0e7971a872e3a2..5f000b5f2c38c3 100644
--- a/Lib/collections/__init__.py
+++ b/Lib/collections/__init__.py
@@ -638,7 +638,8 @@ def elements(self):
         >>> sorted(c.elements())
         ['A', 'A', 'B', 'B', 'C', 'C']
 
-        # Knuth's example for prime factors of 1836:  2**2 * 3**3 * 17**1
+        Knuth's example for prime factors of 1836:  2**2 * 3**3 * 17**1
+
         >>> import math
         >>> prime_factors = Counter({2: 2, 3: 3, 17: 1})
         >>> math.prod(prime_factors.elements())

_______________________________________________
Python-checkins mailing list -- [email protected]
To unsubscribe send an email to [email protected]
https://mail.python.org/mailman3/lists/python-checkins.python.org/
Member address: [email protected]

Reply via email to