Contents of this page:
Options:
Code modules are translated into Python code modules with a functions and subroutines being converted to module level functions. Variables, functions and subroutines which are declared as Public or Global are flagged as globally accessible which means that, if another module tries to access them, then that module will acquire an import statement to import the code module and the variable reference will be replaced by a fully qualified name (module.name).
VB | Python |
---|---|
|
|
There are no specific options relating to code modules.
Some General options apply:
[General] # Yes or No, whether to try to automatically extract docstrings from the code TryToExtractDocStrings = Yes
Syntax: TryToExtractDocStrings = Yes | No
If TryToExtractDocStrings is set then any contiguous block of comment lines found at the start of the module are interpretted as a docstring and added to the class definition. The docstring terminates with the first non-comment line.
VB | Python |
---|---|
|
|