"in",
"integers",
"lambda",
+ "lazy",
"lists",
"naming",
"nonlocal",
'in': ('in', 'SEQUENCEMETHODS'),
'is': 'COMPARISON',
'lambda': ('lambda', 'FUNCTIONS'),
+ 'lazy': ('lazy', 'MODULES'),
'nonlocal': ('nonlocal', 'global NAMESPACES'),
'not': 'BOOLEAN',
'or': 'BOOLEAN',
def test_keywords(self):
self.assertEqual(sorted(pydoc.Helper.keywords),
- sorted(keyword.kwlist))
+ sorted(keyword.kwlist + ['lazy']))
def test_interact_empty_line_continues(self):
# gh-138568: test pressing Enter without input should continue in help session
--- /dev/null
+Add :keyword:`lazy` to the list of support topic by :func:`help`.