GabeDottl / NineSlashNine-PythonAutocomplete

Other
0 stars 0 forks source link

Add broad Exception handling around major components (parsing, importing, etc.) #48

Open GabeDottl opened 5 years ago

GabeDottl commented 5 years ago

to ensure now low-level crashes propogate up in production. Use a production flag. Maybe:

ComponentLevelException = Exception if production else NeverRaisedException try: ... except ComponentLevelException: ....