Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
D
doxverilog
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Commits
Open sidebar
Elphel
doxverilog
Commits
d13908f6
Commit
d13908f6
authored
Nov 16, 2014
by
Dimitri van Heesch
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug 739054 - Python xml not outputting info of functions inside __init__.py
parent
9b7e4ffb
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
0 deletions
+13
-0
pyscanner.l
src/pyscanner.l
+13
-0
No files found.
src/pyscanner.l
View file @
d13908f6
...
...
@@ -1268,6 +1268,19 @@ STARTDOCSYMS "##"
BEGIN(VariableEnd);
}
}
{TRIDOUBLEQUOTE} { // start of a comment block
g_specialBlock = FALSE;
current->program+=yytext;
initTriDoubleQuoteBlock();
BEGIN(TripleComment);
}
{TRISINGLEQUOTE} { // start of a comment block
g_specialBlock = FALSE;
current->program+=yytext;
initTriSingleQuoteBlock();
BEGIN(TripleComment);
}
"\"" {
g_stringContext=YY_START;
current->initializer+="\"";
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment