diff options
author | Johannes Gijsbers <jlg@dds.nl> | 2004-09-11 16:34:35 (GMT) |
---|---|---|
committer | Johannes Gijsbers <jlg@dds.nl> | 2004-09-11 16:34:35 (GMT) |
commit | 7a8c43ee6a1f9c50bec8cc5234eff8b1d5e61088 (patch) | |
tree | eaff8edea3793ee407b424b9096c443b9a0d06ec /Demo/scripts/unbirthday.py | |
parent | 9324526a7658c5450eba24b48065d87d5db5ab1f (diff) | |
download | cpython-7a8c43ee6a1f9c50bec8cc5234eff8b1d5e61088.zip cpython-7a8c43ee6a1f9c50bec8cc5234eff8b1d5e61088.tar.gz cpython-7a8c43ee6a1f9c50bec8cc5234eff8b1d5e61088.tar.bz2 |
Add 'if __name__ == "__main__":' to files already as a usable as a module.
Diffstat (limited to 'Demo/scripts/unbirthday.py')
-rwxr-xr-x | Demo/scripts/unbirthday.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Demo/scripts/unbirthday.py b/Demo/scripts/unbirthday.py index e3b7be7..2d0b8e5 100755 --- a/Demo/scripts/unbirthday.py +++ b/Demo/scripts/unbirthday.py @@ -103,4 +103,5 @@ def mkdate((year, month, day)): days = days + day return days -main() +if __name__ == "__main__": + main() |