1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
|
#! /bin/sh -e
# DP: test_sundry: Don't fail on import of the profile and pstats module
dir=
if [ $# -eq 3 -a "$2" = '-d' ]; then
pdir="-d $3"
dir="$3/"
elif [ $# -ne 1 ]; then
echo >&2 "usage: `basename $0`: -patch|-unpatch [-d <srcdir>]"
exit 1
fi
case "$1" in
-patch)
patch $pdir -f --no-backup-if-mismatch -p0 < $0
;;
-unpatch)
patch $pdir -f --no-backup-if-mismatch -R -p0 < $0
;;
*)
echo >&2 "usage: `basename $0`: -patch|-unpatch [-d <srcdir>]"
exit 1
esac
exit 0
--- Lib/test/test_sundry.py~ 2006-06-22 22:32:32.709629200 +0000
+++ Lib/test/test_sundry.py 2006-06-22 22:34:04.901613888 +0000
@@ -46,7 +46,11 @@
import pipes
#import poplib
import posixfile
-import pstats
+try:
+ import pstats # separated out into the python-profiler package
+except ImportError:
+ if verbose:
+ print "skipping profile and pstats"
import py_compile
import pydoc
import rexec
|