Sanjay Malakar
- 活动总数 44
- 最后的活动
- 成员加入日期
- 关注 0 名用户
- 关注者数 0 名用户
- 投票数 5
- 订阅数 11
-
Sanjay Malakar 创建了一个帖子, 已回答PsiInvalidElementAccessException 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 创建了一个帖子, 已计划Python 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 创建了一个帖子, 已计划PyCharm 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 进行了评论, -
-
-
Sanjay Malakar 创建了一个帖子, 已回答Reading 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 创建了一个帖子, 已回答Call 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 进行了评论, -
Sanjay Malakar 进行了评论,