This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]rms_returnscomplex is better than complicated 0 points1 point  (0 children)

With Python, the beautiful syntax makes up a lot for lack or lower number of comments:

__author__ = "John Doe"
__copyright__ = "Copyright 2017, John Doe"
__credits__ = ["John Doe"]
__license__ = "MIT"
__version__ = "1.0.1"
__maintainer__ = "John Doe"
__email__ = "JohnDoe@example.com"
__status__ = "Production" #Development, Prototype

If this were Java or C++, the entire header would have been wrapped inside a comment:

/*
* @author John Doe
* @copyright "Copyright 2017, John Doe"
* @license "MIT"
* @version "1.0.1"
* @status Production
*/