Autumn Jolitz
Autumn Jolitz
I agree that a regex solution would also be helpful. I do understand the reluctance to add multiple functions, even if it does make exceedingly common string operations a little...
Hi @stevearc ! I want to say thank you for this project. I was going to report a bug today regarding sporadic false "Unable to find packages: $package_name" for packages...
After adding this to server.py: ``` root = logging.getLogger() root.setLevel(logging.DEBUG) ch = logging.FileHandler('/tmp/sublimepython.log') ch.setLevel(logging.DEBUG) formatter = logging.Formatter('%(asctime)s - %(name)s - %(levelname)s - %(message)s') ch.setFormatter(formatter) root.addHandler(ch) ``` I was able to...
Your understanding is in error. No worries, it happens to anyone. PEP8 section: ``` - Don't compare boolean values to True or False using ==. Yes: if greeting: No: if...
Thanks Julian. I've sutured in the traceback print statement. ``` Traceback (most recent call last): File "/Users/BenJolitz/Library/Application Support/Sublime Text 3/Packages/SublimePythonIDE/sublime_python_linting.py", line 107, in check parse_errors(view, errors, lines, vid) File "/Users/BenJolitz/Library/Application...
I've learned today that if my flask app on uWSGI uses `enable-threads=true` and `threads=2` (for any number greater than 1), then a SIGHUP on a worker produces an indefinite hang.