Search found 1 match

by justinancheta
Mon Sep 02, 2019 6:26 pm
Forum: Feature Wishlist
Topic: Live Python3
Replies: 11
Views: 8434

Re: Live Python3

@neux I was playing around with this, too. I noticed that it doesn't barf when I import the `threading` module.

For instance I think I can do something like:

import threading
...
thread = threading.Thread(target=self.request_x32_to_send_change_notifications)
thread.start()
...


However ...