[Python-checkins] cpython (3.3): Fix comment in test_gdb

nick.coghlan python-checkins at python.org
Sun Sep 22 11:38:56 CEST 2013


http://hg.python.org/cpython/rev/e8d4ed996447
changeset:   85772:e8d4ed996447
branch:      3.3
parent:      85762:08c45e18e7b2
user:        Nick Coghlan <ncoghlan at gmail.com>
date:        Sun Sep 22 19:38:16 2013 +1000
summary:
  Fix comment in test_gdb

files:
  Lib/test/test_gdb.py |  3 ++-
  1 files changed, 2 insertions(+), 1 deletions(-)


diff --git a/Lib/test/test_gdb.py b/Lib/test/test_gdb.py
--- a/Lib/test/test_gdb.py
+++ b/Lib/test/test_gdb.py
@@ -63,7 +63,8 @@
 if not gdbpy_version:
     raise unittest.SkipTest("gdb not built with embedded python support")
 
-# Verify that "gdb" can load our custom hooks. In theory this should never fail.
+# Verify that "gdb" can load our custom hooks, as OS security settings may
+# disallow this without a customised .gdbinit.
 cmd = ['--args', sys.executable]
 _, gdbpy_errors = run_gdb('--args', sys.executable)
 if "auto-loading has been declined" in gdbpy_errors:

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list