diff options
author | Zachary Turner <zturner@google.com> | 2015-08-13 22:05:54 +0000 |
---|---|---|
committer | Zachary Turner <zturner@google.com> | 2015-08-13 22:05:54 +0000 |
commit | 9ff56b2ec7f5fad9cee42d57bd47606a22d932f3 (patch) | |
tree | 8877c96a9e138b2624472455820279f9a4d7fad1 /lldb/test/python_api | |
parent | 56495d5b1f080a741b860303c282a83a73016086 (diff) | |
download | bcm5719-llvm-9ff56b2ec7f5fad9cee42d57bd47606a22d932f3.tar.gz bcm5719-llvm-9ff56b2ec7f5fad9cee42d57bd47606a22d932f3.zip |
Remove Unicode byte-order mark from python files.
This was caused by a bug in the PTVS source file editor, which has
since been fixed and awaiting a new release. For now people using
this editor need to remember to manually remove this before
committing a file.
llvm-svn: 244963
Diffstat (limited to 'lldb/test/python_api')
5 files changed, 5 insertions, 5 deletions
diff --git a/lldb/test/python_api/watchpoint/TestSetWatchpoint.py b/lldb/test/python_api/watchpoint/TestSetWatchpoint.py index 3c6a8117a8c..1fd4d441ccd 100644 --- a/lldb/test/python_api/watchpoint/TestSetWatchpoint.py +++ b/lldb/test/python_api/watchpoint/TestSetWatchpoint.py @@ -1,4 +1,4 @@ -""" +""" Use lldb Python SBValue API to create a watchpoint for read_write of 'globl' var. """ diff --git a/lldb/test/python_api/watchpoint/TestWatchpointIgnoreCount.py b/lldb/test/python_api/watchpoint/TestWatchpointIgnoreCount.py index 7cab93a4c7c..c58f2fd3e88 100644 --- a/lldb/test/python_api/watchpoint/TestWatchpointIgnoreCount.py +++ b/lldb/test/python_api/watchpoint/TestWatchpointIgnoreCount.py @@ -1,4 +1,4 @@ -""" +""" Use lldb Python SBWatchpoint API to set the ignore count. """ diff --git a/lldb/test/python_api/watchpoint/TestWatchpointIter.py b/lldb/test/python_api/watchpoint/TestWatchpointIter.py index f44ffc4d386..ea202a55b25 100644 --- a/lldb/test/python_api/watchpoint/TestWatchpointIter.py +++ b/lldb/test/python_api/watchpoint/TestWatchpointIter.py @@ -1,4 +1,4 @@ -""" +""" Use lldb Python SBTarget API to iterate on the watchpoint(s) for the target. """ diff --git a/lldb/test/python_api/watchpoint/condition/TestWatchpointConditionAPI.py b/lldb/test/python_api/watchpoint/condition/TestWatchpointConditionAPI.py index 6474b395b31..d643c8c5ee4 100644 --- a/lldb/test/python_api/watchpoint/condition/TestWatchpointConditionAPI.py +++ b/lldb/test/python_api/watchpoint/condition/TestWatchpointConditionAPI.py @@ -1,4 +1,4 @@ -""" +""" Test watchpoint condition API. """ diff --git a/lldb/test/python_api/watchpoint/watchlocation/TestSetWatchlocation.py b/lldb/test/python_api/watchpoint/watchlocation/TestSetWatchlocation.py index 5088506a221..b6db8280c0e 100644 --- a/lldb/test/python_api/watchpoint/watchlocation/TestSetWatchlocation.py +++ b/lldb/test/python_api/watchpoint/watchlocation/TestSetWatchlocation.py @@ -1,4 +1,4 @@ -""" +""" Use lldb Python SBValue.WatchPointee() API to create a watchpoint for write of '*g_char_ptr'. """ |