mirror of
https://github.com/python/cpython.git
synced 2025-08-03 00:23:06 +00:00
Also recognize DragRef as a method-argument.
This commit is contained in:
parent
6a360bd3a7
commit
ecdaadb7c6
2 changed files with 625 additions and 679 deletions
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…
Add table
Add a link
Reference in a new issue