tricky ====== A test module with functions, variables and long docstring This one has even the module docstring longer as it can then form a testcase of such module. # Usage # This module is only used for testing of docstring parsing and object (by which we mean *function* or *variable*, not some OOP stuff) printing functionality. The internal format is Markdown-ish, but is parsed as plain text. But still, as an example we will try to use some common Markdown. For example, this: #!/bin/bash # is like first two lines of this file look like. Variables --------- ### `$TRICKY_LIMIT` ### A test variable with a short docstring ### `$TRICKY_REVERSED` ### It's also possible to have docstring *after* the doc ### `$TRICKY_DEBUG` ### A test variable with a long docstring Not really long but the longer version (header plus the rest) Functions --------- ### `tricky_foo()` ### A test function with a short docstring ### `tricky_other_function()` ### A test function with a long docstring Not really long but the longer version (header plus the rest)