Skip to content

Commit 18e1264

Browse files
authored
gh-117387 Remove hash mark from introductory text (#117409)
1 parent a32d693 commit 18e1264

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
@@ -639,7 +639,8 @@ def elements(self):
639639
>>> sorted(c.elements())
640640
['A', 'A', 'B', 'B', 'C', 'C']
641641
642-
# Knuth's example for prime factors of 1836: 2**2 * 3**3 * 17**1
642+
Knuth's example for prime factors of 1836: 2**2 * 3**3 * 17**1
643+
643644
>>> import math
644645
>>> prime_factors = Counter({2: 2, 3: 3, 17: 1})
645646
>>> math.prod(prime_factors.elements())

0 commit comments

Comments
 (0)