mirror of https://github.com/python/cpython
Also recognize DragRef as a method-argument.
This commit is contained in:
parent
6a360bd3a7
commit
ecdaadb7c6
File diff suppressed because it is too large
Load Diff
|
@ -37,7 +37,7 @@ class MyScanner(Scanner):
|
|||
listname = "functions"
|
||||
if arglist:
|
||||
t, n, m = arglist[0]
|
||||
if t == 'DragReference' and m == "InMode":
|
||||
if t in ('DragReference', 'DragRef') and m == "InMode":
|
||||
classname = "Method"
|
||||
listname = "methods"
|
||||
return classname, listname
|
||||
|
|
Loading…
Reference in New Issue