Stubbs / sublime-vagrant

Vagrant commands for Sublime Text
43 stars 4 forks source link

Using thread module directly is a bad idea #28

Closed pradyunsg closed 7 years ago

pradyunsg commented 8 years ago

The threading module is a much better way of handling concurrency than the thread module. While the latter works, the former feels cleaner.

Multiprocessing is better than both of them due to the way CPython is implemented but Sublime Text doesn't have the best of supports for it.

Consider this issue a request to stop using the thread module and use the threading module instead.

pradyunsg commented 7 years ago

I don't really care about this.