mozilla / sphinx-js

Autodoc-style extraction into Sphinx for your JS project
https://pypi.python.org/pypi/sphinx-js/
MIT License
282 stars 81 forks source link

replace yield StopItertion with return #200

Closed lonnen closed 2 years ago

lonnen commented 2 years ago

this should have always been raise StopIteration, but even that does not work properly in python 3.6 and higher becuase of PEP 479, which recommends replacing raise StopIteration with return

fixes issue #199