Metadata-Version: 1.0
Name: codetimer
Version: 0.0.2
Summary: 
        SimpleCodeTimer !

Before :
=================== CODE ====================
    def say(what):
        print "say : %s" % what

    say("ho!!")

=================== OUTPUT ===================
    say : ho!!

After :

=================== CODE ====================
    import codetimer
    @codetimer.methodTimer
    def say(what):
        print "say : %s" % what

    say("ho!!")

=================== OUTPUT ===================
    say : ho!!
    SimpleCodeTimer : say method costs 0.000028 seconds !

        
Home-page: https://www.facebook.com/yingerking
Author: Min
Author-email: wwwee98@gmail.com
License: UNKNOWN
Description: UNKNOWN
Keywords: runtime,timer,codetimer
Platform: UNKNOWN
