mirror of
https://github.com/panda3d/panda3d.git
synced 2025-10-03 10:22:45 -04:00
Fix bug: inheritance of Python classes didn't show up
This commit is contained in:
parent
b1cb8ff5c8
commit
f808e0a03b
@ -389,6 +389,7 @@ DOCSTRING_STMT_PATTERN = (
|
||||
|
||||
DERIVATION_PATTERN = (
|
||||
symbol.test,
|
||||
(symbol.or_test,
|
||||
(symbol.and_test,
|
||||
(symbol.not_test,
|
||||
(symbol.comparison,
|
||||
@ -402,7 +403,7 @@ DERIVATION_PATTERN = (
|
||||
(symbol.power,
|
||||
(symbol.atom,
|
||||
(token.NAME, ['classname'])
|
||||
)))))))))))))
|
||||
))))))))))))))
|
||||
|
||||
ASSIGNMENT_STMT_PATTERN = (
|
||||
symbol.stmt,
|
||||
|
Loading…
x
Reference in New Issue
Block a user