“RuntimeError: generator raised StopIteration” every time I try to run app

后端 未结 5 462
执笔经年
执笔经年 2020-12-02 16:49

I am trying to run this code:

import web

urls = (
    \'/\', \'index\'
)

if __name__ == \"__main__\":
    app = web.application(urls, globals())
    app.ru         


        
相关标签:
5条回答
  • 2020-12-02 17:10

    This should be fixed in #577: https://github.com/webpy/webpy/pull/577

    0 讨论(0)
  • 2020-12-02 17:18

    My solution was to upgrade these pips

    mongoengine from 0.14.0 to 0.19.1 and

    flask-mongoengine to 0.9.5

    it worked.

    0 讨论(0)
  • 2020-12-02 17:27

    So during my recent self-learning on Python, a course required me to install Web.py and I was getting this error and as one of the answer stated, it had to be updated to be compatible with Python 3.7.

    I installed the package with pip3 install web.py==0.40-dev1 ran into this error and started searching the web for a solution.

    What I did was search through webpy git and find the utils.py file that was more recent in https://github.com/webpy/webpy/tree/master/web, downloaded it, and used it to replace the one that was in my Lib/site-packages/web folder (I'm a Windows user) and it just worked.

    Hope this help someone.

    0 讨论(0)
  • 2020-12-02 17:32

    To judge from the file paths, it looks like you're running Python 3.7. If so, you're getting caught by new-in-3.7 behavior described here:

    PEP 479 is enabled for all code in Python 3.7, meaning that StopIteration exceptions raised directly or indirectly in coroutines and generators are transformed into RuntimeError exceptions. (Contributed by Yury Selivanov in bpo-32670.)

    Before this change, a StopIteration raised by, or passing through, a generator simply ended the generator's useful life (the exception was silently swallowed). The module you're using will have to be recoded to work as intended with 3.7.

    Chances are they'll need to change:

    yield next(seq)
    

    to:

    try:
        yield next(seq)
    except StopIteration:
        return
    
    0 讨论(0)
  • 2020-12-02 17:32

    They fixed this issue, just uninstall your current web.py version and I got an error when running pip install web.py from windows 10. So I run the pip install -e git+https://github.com/webpy/webpy.git#egg=webpy command to get the latest version from master branch. This won't execute RuntimeError: generator raised StopIteration error as question mentioned.

    0 讨论(0)
提交回复
热议问题