Skip to content

Instantly share code, notes, and snippets.

@zuriby
Created March 25, 2011 00:36
Show Gist options
  • Save zuriby/886166 to your computer and use it in GitHub Desktop.
Save zuriby/886166 to your computer and use it in GitHub Desktop.
#!/usr/bin/env python
# -*- coding: UTF-8 -*-
'''
I just came across pychecker ( http://pychecker.sourceforge.net/ ) and realized that putting it
at the bottom of each module can do only good, can't it?
'''
def foo():
pass
class Bar(object):
pass
if __name__ == '__main__':
import os
os.system("pychecker " + __file__)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment