Created
January 3, 2018 10:09
-
-
Save zhangchunlin/88e73d090cba71a0e5d3ebfe41e7fb8c to your computer and use it in GitHub Desktop.
Revisions
-
zhangchunlin created this gist
Jan 3, 2018 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,9 @@ #!/usr/bin/env python from __future__ import print_function def main(): pass if __name__=='__main__': main() 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,13 @@ #!/usr/bin/env python from __future__ import print_function class Test(object): def __init__(self): pass def main(self): pass if __name__=='__main__': t = Test() t.main()