535 """ |
535 """ |
536 Private method to scan the source text of a Python module and retrieve |
536 Private method to scan the source text of a Python module and retrieve |
537 the relevant information. |
537 the relevant information. |
538 |
538 |
539 @param src the source text to be scanned (string) |
539 @param src the source text to be scanned (string) |
540 """ |
540 """ # __IGNORE_WARNING_D234__ |
541 # __IGNORE_WARNING_D234__ |
541 |
542 def calculateEndline(lineno, lines, indent): |
542 def calculateEndline(lineno, lines, indent): |
543 """ |
543 """ |
544 Function to calculate the end line of a class or method/function. |
544 Function to calculate the end line of a class or method/function. |
545 |
545 |
546 @param lineno line number to start at (one based) |
546 @param lineno line number to start at (one based) |