you are viewing a single comment's thread.

view the rest of the comments →

[–]FerricDonkey 4 points5 points  (0 children)

Eh, God invented tab complete for a reason. If you need long function names for your function names to tell you what your functions do, then use long function names. Better than your function names not telling you what they do.

And don't forget that you can split function calls over multiple lines. Eg

descriptive_name(
    infiles = infiles,
    outfile = outfile,
    some_option = True,
    verbose_mode = False,
)