aboutsummaryrefslogtreecommitdiff
path: root/examples/python2.7/patches/test-sundry.diff
diff options
context:
space:
mode:
Diffstat (limited to 'examples/python2.7/patches/test-sundry.diff')
-rw-r--r--examples/python2.7/patches/test-sundry.diff17
1 files changed, 17 insertions, 0 deletions
diff --git a/examples/python2.7/patches/test-sundry.diff b/examples/python2.7/patches/test-sundry.diff
new file mode 100644
index 0000000..167ce48
--- /dev/null
+++ b/examples/python2.7/patches/test-sundry.diff
@@ -0,0 +1,17 @@
+# DP: test_sundry: Don't fail on import of the profile and pstats module
+
+--- a/Lib/test/test_sundry.py
++++ b/Lib/test/test_sundry.py
+@@ -62,7 +62,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 sched