Remove trailing whitespace in Lib/pydoc_data/topics.py (#130014)

This commit is contained in:
Sam Gross 2025-02-11 16:28:28 -05:00 committed by GitHub
parent 00ec781877
commit ed816f1a70
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -5614,7 +5614,7 @@ Nesting arguments and more complex examples:
3232235521
>>>
>>> width = 5
>>> for num in range(5,12):
>>> for num in range(5,12):
... for base in 'dXob':
... print('{0:{width}{base}}'.format(num, base=base, width=width), end=' ')
... print()