Ilya Skriblovsky
- Total activity 2
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 1
-
Created Is it possible to hint PyCharm that method is always raising exception to calm "uninitialized variable" warnings?
With twisted framework and generators-based async coding style it is common to have code like that: try: result = yield some_async_method()except SomeException: defer.returnValue(None)do_some...