This file contains 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 os | |
import os.path | |
import unittest | |
import pep8 | |
ignore_patterns = ('.git',) | |
def ignore(check_dir): | |
for pattern in ignore_patterns: |
This file contains 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 Queue | |
import wx | |
def run(function, | |
args=None, | |
timeout=None, | |
finish_function=None, |