Python SyntaxError: (“'return' with argument inside generator”,)

前端 未结 1 2008
你的背包
你的背包 2020-12-05 17:46

I have this function in my Python program:

@tornado.gen.engine
def check_status_changes(netid, sensid):        
    como_url = \"\".join([\'http://131.114.52         


        
相关标签:
1条回答
  • 2020-12-05 18:17

    You cannot use return with a value to exit a generator in Python 2, or Python 3.0 - 3.2. You need to use yield plus a return without an expression:

    if response.error:
        self.error("Error while retrieving the status")
        self.finish()
        yield error
        return
    

    In the loop itself, use yield again:

    for line in response.body.split("\n"):
        if line != "": 
            #net = int(line.split(" ")[1])
            #sens = int(line.split(" ")[2])
            #stype = int(line.split(" ")[3])
            value = int(line.split(" ")[4])
            print value
            yield value
            return
    

    Alternatives are to raise an exception or to use tornado callbacks instead.

    In Python 3.3 and newer, return with a value in a generator function results in the value being attached to the StopIterator exception. For async def asynchronous generators (Python 3.6 and up), return must still be value-less.

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