Home | Trees | Indices | Help |
---|
|
Parsing and composing message comments.
Author: Chusslove Illich (Часлав Илић) <caslav.ilic@gmx.net>
License: GPLv3
Functions | |||
list of strings |
|
||
list of strings |
|
||
list of strings |
|
||
list of strings |
|
||
list of strings |
|
||
list of strings |
|
||
list of strings |
|
||
list of strings |
|
||
set of strings |
|
Variables | |
__package__ = None
|
Function Details |
Extract elements of the list embedded in comments. An embedded list is identified by a prefix substring in the comment, followed by list of elements separated by a certain character sequence. If several comments start by the same identifier substring, they are considered continuation of the same list (even if there are non-list comments in between). Leading and trailing whitespace is stripped when matching for prefix substring, as well as from the parsed list elements.
|
Extract elements of the list embedded in manual comments. List elements are extracted by calling parse_list() on manual comments, passing along prefix and separtor as is.
See Also: parse_list |
Extract elements of the list embedded in auto comments. Like manc_parse_list but works on auto comments.
|
Extract custom flags embedded in manual comments. An embedded list of flags is of the form: # <prefix>, flag1, flag2, ... Custom flags are extracted by calling parse_list() with Some types of custom flags used elsewhere in Pology, by prefixes:
See Also: parse_list |
Extract custom flags embedded in auto comments. Like manc_parse_flag_list but works on auto comments.
|
Extract values of a field embedded in comments. And embedded field is of the form: <field>: <value> ### sub-comment There may be several fields of the same name, thus the values are returned in a list (empty if there were no appearances of the field). Values are stripped of leading and trailing whitespace.
|
Extract values of a field embedded in manual comments. Applies parse_field_values to manual comments of the message.
|
Extract values of a field embedded in auto comments. Like manc_parse_field_values but works on auto comments.
|
Summit: Extract branch IDs from comments. Branch IDs are embedded as an auto comment of this form: #. +> branch_id_1 branch_id_2 ... Branch IDs should be unique.
|
Home | Trees | Indices | Help |
---|
Generated by Epydoc 3.0.1 on Thu Jul 24 21:00:26 2014 | http://epydoc.sourceforge.net |