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_iterable_py33.py 151B

1234567
  1. """
  2. Check that `yield from`-statement takes an iterable.
  3. """
  4. # pylint: disable=missing-docstring
  5. def to_ten():
  6. yield from 10 # [not-an-iterable]