Sanjay Malakar
- Total activity 44
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 5
- Subscriptions 11
-
Sanjay Malakar created a post, AnsweredPsiInvalidElementAccessException because different providers
Can anyone explain why this exception occurs? com.intellij.diagnostic.PluginException: Element: class com.jetbrains.python.psi.impl.PyReferenceExpressionImpl #Python because: different providers: ... -
Sanjay Malakar created a post, PlannedPython control flow bug.
def foo(a, b): try: while a > 0 and b > 0: print(a % 10 + b % 10) a //= 10 b //= 10 finally: print("Hello") print("End")foo(5, 5) The print... -
Sanjay Malakar created a post, PlannedPyCharm can't find caller of subclass's method that is not implemented in supeclass
class A: def bar(self): pass def foo(self): self.bar() self.buzz()class B(A): def bar(self): pass def buzz(self): pass For method, B::bar it finds t... -
Sanjay Malakar commented, -
-
-
Sanjay Malakar created a post, AnsweredReading PSI from other than UI thread
Hello, As we know reading the PSI outside of a read lock throws the following exception. java.lang.Throwable: Read access is allowed from event dispatch thread or inside read-action only (see com.i... -
Sanjay Malakar created a post, AnsweredCall hierarchy for Python
I am using com.jetbrains.python.hierarchy.call.PyStaticCallHierarchyUtil#getCallees method to get the callees of a function. However, I'm getting some weird results. For this code snippet: class A:... -
Sanjay Malakar commented, -
Sanjay Malakar commented,