diff options
| author | Guido van Rossum <guido@python.org> | 1992-12-17 17:32:35 +0000 |
|---|---|---|
| committer | Guido van Rossum <guido@python.org> | 1992-12-17 17:32:35 +0000 |
| commit | 58dd035f3c2f8414af10557e92e1ead0b16fa130 (patch) | |
| tree | 7e8b91dde4b81cbad199f94633a6659a32715911 | |
| parent | 7271babcef777cd66e29dd88d555afe3bf37b692 (diff) | |
| download | cpython-git-58dd035f3c2f8414af10557e92e1ead0b16fa130.tar.gz | |
Added comments.
| -rw-r--r-- | Demo/rpc/T.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Demo/rpc/T.py b/Demo/rpc/T.py index 24d5e8ae3e..475372bfff 100644 --- a/Demo/rpc/T.py +++ b/Demo/rpc/T.py @@ -1,3 +1,6 @@ +# Simple interface to report execution times of program fragments. +# Call TSTART() to reset the timer, TSTOP(...) to report times. + import sys, os, time def TSTART(): |
