[Lldb-commits] [lldb] r251462 - Fix line endings to be LF instead of CRLF.

Zachary Turner via lldb-commits lldb-commits at lists.llvm.org
Tue Oct 27 15:54:47 PDT 2015


Author: zturner
Date: Tue Oct 27 17:54:46 2015
New Revision: 251462

URL: http://llvm.org/viewvc/llvm-project?rev=251462&view=rev
Log:
Fix line endings to be LF instead of CRLF.

Modified:
    lldb/trunk/packages/Python/lldbsuite/__init__.py
    lldb/trunk/packages/Python/lldbsuite/test/__init__.py

Modified: lldb/trunk/packages/Python/lldbsuite/__init__.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/__init__.py?rev=251462&r1=251461&r2=251462&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/__init__.py (original)
+++ lldb/trunk/packages/Python/lldbsuite/__init__.py Tue Oct 27 17:54:46 2015
@@ -1,20 +1,20 @@
-# Module level initialization for the `lldbsuite` module.
-
-import inspect
-import os
-import sys
-
-def find_lldb_root():
-    lldb_root = os.path.dirname(inspect.getfile(inspect.currentframe()))
-    while True:
-        lldb_root = os.path.dirname(lldb_root)
-        if lldb_root is None:
-            return None
-
-        test_path = os.path.join(lldb_root, "lldb.root")
-        if os.path.isfile(test_path):
-            return lldb_root
-    return None
-
-# lldbsuite.lldb_root refers to the root of the git/svn source checkout
-lldb_root = find_lldb_root()
+# Module level initialization for the `lldbsuite` module.
+
+import inspect
+import os
+import sys
+
+def find_lldb_root():
+    lldb_root = os.path.dirname(inspect.getfile(inspect.currentframe()))
+    while True:
+        lldb_root = os.path.dirname(lldb_root)
+        if lldb_root is None:
+            return None
+
+        test_path = os.path.join(lldb_root, "lldb.root")
+        if os.path.isfile(test_path):
+            return lldb_root
+    return None
+
+# lldbsuite.lldb_root refers to the root of the git/svn source checkout
+lldb_root = find_lldb_root()

Modified: lldb/trunk/packages/Python/lldbsuite/test/__init__.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/__init__.py?rev=251462&r1=251461&r2=251462&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/__init__.py (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/__init__.py Tue Oct 27 17:54:46 2015
@@ -1 +1 @@
-# Module level initialization for the `lldbsuite.test` module.
+# Module level initialization for the `lldbsuite.test` module.




More information about the lldb-commits mailing list