Skip to content

Commit b912d2b

Browse files
[3.12] gh-117387 Remove hash mark from introductory text (GH-117409) (#gh-
1 parent c80d138 commit b912d2b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Lib/collections/__init__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -638,7 +638,8 @@ def elements(self):
638638
>>> sorted(c.elements())
639639
['A', 'A', 'B', 'B', 'C', 'C']
640640
641-
# Knuth's example for prime factors of 1836: 2**2 * 3**3 * 17**1
641+
Knuth's example for prime factors of 1836: 2**2 * 3**3 * 17**1
642+
642643
>>> import math
643644
>>> prime_factors = Counter({2: 2, 3: 3, 17: 1})
644645
>>> math.prod(prime_factors.elements())

0 commit comments

Comments
 (0)