diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2014-04-12 14:04:16 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2014-04-12 14:04:16 (GMT) |
commit | 513ce9aafd05add9b5c1e67e843e540f8937cf63 (patch) | |
tree | 56ce3981ba727c6321c3678c01f0abc777379b07 /src/pyscanner.l | |
parent | 01583f46ca25cbccae90060791e603f929aaa297 (diff) | |
download | Doxygen-513ce9aafd05add9b5c1e67e843e540f8937cf63.zip Doxygen-513ce9aafd05add9b5c1e67e843e540f8937cf63.tar.gz Doxygen-513ce9aafd05add9b5c1e67e843e540f8937cf63.tar.bz2 |
Bug 726219 - python3 import style causes doxygen to ignore some inheritances
Diffstat (limited to 'src/pyscanner.l')
-rw-r--r-- | src/pyscanner.l | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/pyscanner.l b/src/pyscanner.l index d239d49..c67875e 100644 --- a/src/pyscanner.l +++ b/src/pyscanner.l @@ -645,6 +645,8 @@ STARTDOCSYMS "##" } <FromMod>{ + "." { // python3 style imports + } {IDENTIFIER}({B}"."{B}{IDENTIFIER})* { // from package import g_packageName=yytext; } |