This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import threading | |
import time | |
import sys | |
import shared | |
shared.counter = 0 | |
event = threading.Event() | |
def main(): | |
import shared |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- coding: utf-8 -*- | |
import sys | |
import os | |
import time | |
import codecs | |
import logging | |
import subprocess | |
import tempfile | |
from functools import wraps | |
PYSIDE = False |