run-tests.py
Christian Tismer <[email protected]>
| Newsgroups | gmane.comp.version-control.subversion.cvs2svn.devel |
|---|---|
| Message-ID | <[email protected]> |
Hi Mike, with my local version (about to become the distro), it works. At least on Max OSX 10.5. No idea what was wrong, I fixed a lot of bugs in the last months. cheers - chris -- Christian Tismer :^) <mailto:[email protected]> tismerysoft GmbH : Have a break! Take a ride on Python's Johannes-Niemeyer-Weg 9A : *Starship* http://starship.python.net/ 14109 Berlin : PGP key -> http://wwwkeys.pgp.net/ work +49 30 802 86 56 mobile +49 173 24 18 776 fax +49 30 80 90 57 05 PGP 0x57F3BF04 9064 F4E1 D754 C2FF 1619 305B C09C 5A3B 57F3 BF04 whom do you want to sponsor today? http://www.stackless.com/ ------------------------------------------------------ http://cvs2svn.tigris.org/ds/viewMessage.do?dsForumId=1667&dsMessageId=2363008 To unsubscribe from this discussion, e-mail: [[email protected]].
psytest.py
(text/x-python-script, 304 B)
import psyco
import sys
# sys.argv.extend(("-v", "77"))
sys.argv.append("77")
psyco.full()
import time
def t():
start = time.time()
try:
execfile('run-tests.py', globals())
finally:
end = time.time()
print >> sys.stderr, end - start, "__in_psyco__", __in_psyco__
t()