aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Lib/pydoc_data
diff options
context:
space:
mode:
authorSam Gross <colesbury@gmail.com>2025-02-11 16:28:28 -0500
committerGitHub <noreply@github.com>2025-02-11 23:28:28 +0200
commited816f1a7088f5e85d9b27ed5828408dff007d18 (patch)
tree7537f307588d560b25260107722da6a77add36db /Lib/pydoc_data
parent00ec7818771903e3007928d191d1297cdb3b5277 (diff)
downloadcpython-ed816f1a7088f5e85d9b27ed5828408dff007d18.tar.gz
cpython-ed816f1a7088f5e85d9b27ed5828408dff007d18.zip
Remove trailing whitespace in Lib/pydoc_data/topics.py (#130014)
Diffstat (limited to 'Lib/pydoc_data')
-rw-r--r--Lib/pydoc_data/topics.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/pydoc_data/topics.py b/Lib/pydoc_data/topics.py
index d58f10c120a..e618fc7fed3 100644
--- a/Lib/pydoc_data/topics.py
+++ b/Lib/pydoc_data/topics.py
@@ -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()