Development of an internal social media platform with personalised dashboards for students
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

yield_outside_func.py 138B

1234
  1. """This is gramatically correct, but it's still a SyntaxError"""
  2. yield 1 # [yield-outside-function]
  3. LAMBDA_WITH_YIELD = lambda: (yield)