[Lldb-commits] [lldb] r130533 - in /lldb/trunk/scripts/Python: build-swig-Python.sh modify-python-lldb.py

Johnny Chen johnny.chen at apple.com
Fri Apr 29 12:22:25 PDT 2011


Author: johnny
Date: Fri Apr 29 14:22:24 2011
New Revision: 130533

URL: http://llvm.org/viewvc/llvm-project?rev=130533&view=rev
Log:
Update comments.

Modified:
    lldb/trunk/scripts/Python/build-swig-Python.sh
    lldb/trunk/scripts/Python/modify-python-lldb.py

Modified: lldb/trunk/scripts/Python/build-swig-Python.sh
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/scripts/Python/build-swig-Python.sh?rev=130533&r1=130532&r2=130533&view=diff
==============================================================================
--- lldb/trunk/scripts/Python/build-swig-Python.sh (original)
+++ lldb/trunk/scripts/Python/build-swig-Python.sh Fri Apr 29 14:22:24 2011
@@ -173,7 +173,7 @@
 
 $SWIG -c++ -shadow -python -I"/usr/include" -I"${SRC_ROOT}/include" -I./. -outdir "${CONFIG_BUILD_DIR}" -o "${swig_output_file}" "${swig_input_file}"
 
-# Implement the iterator protocol for some lldb objects.
+# Implement the iterator protocol and/or eq/ne operators for some lldb objects.
 # Append global variable to lldb Python module.
 # And initialize the lldb debugger subsystem.
 current_dir=`pwd`

Modified: lldb/trunk/scripts/Python/modify-python-lldb.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/scripts/Python/modify-python-lldb.py?rev=130533&r1=130532&r2=130533&view=diff
==============================================================================
--- lldb/trunk/scripts/Python/modify-python-lldb.py (original)
+++ lldb/trunk/scripts/Python/modify-python-lldb.py Fri Apr 29 14:22:24 2011
@@ -2,8 +2,8 @@
 # modify-lldb-python.py
 #
 # This script modifies the lldb module (which was automatically generated via
-# running swig) to support iteration for certain lldb objects, adds a global
-# variable 'debugger_unique_id' and initializes it to 0.
+# running swig) to support iteration and/or equality operations for certain lldb
+# objects, adds a global variable 'debugger_unique_id' and initializes it to 0.
 #
 # It also calls SBDebugger.Initialize() to initialize the lldb debugger
 # subsystem.





More information about the lldb-commits mailing list