Last active
August 23, 2017 13:36
-
-
Save bismarckjunior/a9adbb026e59ca74e39d1835cc0e2826 to your computer and use it in GitHub Desktop.
Copyright headers
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#=============================================================================# | |
# Copyright (c) YYYY Souza Jr, B. G. <[email protected]> # | |
# This file is part of <Project Name>. # | |
# Licensing information can be found in the LICENSE file. # | |
#=============================================================================# | |
class Test: | |
""" | |
Example of class documentation. | |
References: | |
[1] Author (YYYY) - Book title, V1. Publisher. Chp 5, pp 55-60. | |
""" | |
pass |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#=============================================================================# | |
# Copyright (c) YYYY <Company> - All Rights Reserved # | |
# This file is part of <Project Name>. # | |
# Unauthorized copying of this file, via any medium is strictly prohibited. # | |
# Proprietary and confidential. # | |
# # | |
# Developers: # | |
# - Bismarck Gomes Souza Junior <[email protected]> # | |
# - Bismarck Gomes Souza Junior <[email protected]> # | |
#=============================================================================# | |
class Test: | |
""" | |
Example of class documentation. | |
References: | |
[1] Author (YYYY) - Book title, V1. Publisher. Chp 5, pp 55-60. | |
""" | |
pass |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment