simple code timer
Project description
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 !
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 !
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
codetimer-0.1.0.tar.gz
(1.0 kB
view details)
File details
Details for the file codetimer-0.1.0.tar.gz.
File metadata
- Download URL: codetimer-0.1.0.tar.gz
- Upload date:
- Size: 1.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2cf3fcc7ffe38670d70d38704197b8a47d52e4dcbb3fa506cc1b7de90b00056a
|
|
| MD5 |
53fc6a6502f5064f356f43ab75a30cae
|
|
| BLAKE2b-256 |
c32cc7704f56fa81b7c2894626f7416c3959cbcb6f4d1275d534b097dc650c90
|