Metadata-Version: 1.0
Name: codetimer
Version: 0.0.0.2
Summary: 
        SimpleCodeTimer !<br>
<br/>
Before :/n
=================== CODE ====================/n
    def say(what):/n
        print "say : %s" % what/n
/n
    say("ho!!")/n
/n
=================== OUTPUT ===================/n
    say : ho!!/n
/n
After :/n
/n
=================== CODE ====================/n
    import codetimer/n
    @codetimer.methodTimer/n
    def say(what):/n
        print "say : %s" % what/n
/n
    say("ho!!")/n
/n
=================== OUTPUT ===================/n
    say : ho!!/n
    SimpleCodeTimer : say method costs 0.000028 seconds !/n

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