Metadata-Version: 1.0
Name: codetimer
Version: 0.0.0.3
Summary: simple code timer
Home-page: https://www.facebook.com/yingerking
Author: Min
Author-email: wwwee98@gmail.com
License: UNKNOWN
Description: 
                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
        
                
Keywords: runtime,timer,codetimer
Platform: UNKNOWN
