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_from_outside_func.py 160B

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