Login  Register

Re: Language Docu Lisp, Python, DCL

Posted by flywire on Jan 17, 2025; 4:12am
URL: https://forum.librecad.org/Language-Docu-Lisp-Python-DCL-tp5726031p5726056.html

emanuel wrote
The format doesn't matter, I have text files as source and I can generate anything from them.
https://github.com/emanuel4you/LibreCAD-Developer-Help/blob/main/python/OpenFileDialog.txt
PYTHON Functions

   string OpenFileDialog(string title, string fileName, string fileExt)
     __________________________________________________________________

   displays a dialogbox for opening a file.
     __________________________________________________________________

   This function returns the filename as a string.

More about...
   [link]GetIntDialog
Seems a clear case for https://peps.python.org/pep-0257/#multi-line-docstrings which are much more functional:
def complex(real=0.0, imag=0.0):
    """Form a complex number.

    Keyword arguments:
    real -- the real part (default 0.0)
    imag -- the imaginary part (default 0.0)
    """
    if imag == 0.0 and real == 0.0:
        return complex_zero
    ...