Yield-Outside-Generator
Documentation Index
Fetch the complete documentation index at: https://docs.sourcery.ai/llms.txt
Use this file to discover all available pages before exploring further.
Sourcery rule id: yield-outside-generator
Section titled “Sourcery rule id: yield-outside-generator”Description
Section titled “Description”Cannot use yield outside a generator function
yieldExplanation
Section titled “Explanation”The yield keyword is used to pause and resume a generator function.
If yield is used outside a generator function or method it will throw a SyntaxError