Python runtimeerror:thread.__init__ () not called workaround

Source: Internet
Author: User
Call an error when writing a multithreaded class
RUNTIMEERROR:THREAD.__INIT__ () not called

The code is as follows:


Class Notifytread (threading. Thread):
def __init__ (self, params):
Threading. Thread.__init__ (self) #here ...
Self.params = params

def run (self):
Print "Start notify ......"
Time.sleep (10)
Print Notify_tran (self.params)
Print "End notify ........"


Initialize the thread in init and then assign a value to the parameter to resolve it.
That is, not missing.
Threading. Thread.__init__ (self)
This is a place to use attention.
  • Contact Us

    The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

    If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.