# DP: test_sundry: Don't fail on import of the profile and pstats module Index: python2.6-2.6.5+20100521/Lib/test/test_sundry.py =================================================================== --- python2.6-2.6.5+20100521.orig/Lib/test/test_sundry.py 2010-05-21 15:45:13.071710230 +0200 +++ python2.6-2.6.5+20100521/Lib/test/test_sundry.py 2010-05-21 15:45:13.079725146 +0200 @@ -64,7 +64,11 @@ import os2emxpath import pdb import posixfile - import pstats + try: + import pstats # separated out into the python-profiler package + except ImportError: + if test_support.verbose: + print "skipping profile and pstats" import py_compile import rexec import rlcompleter