From 5146a9ea5d8d3c91cee5d2d2ad4c50491e7a4c58 Mon Sep 17 00:00:00 2001 From: Aaron Smith Date: Tue, 13 Aug 2019 22:18:01 +0000 Subject: Initial support for native debugging of x86/x64 Windows processes Summary: Thanks to Hui Huang and the reviewers for all the help with this patch. Reviewers: labath, Hui, jfb, clayborg, amccarth Reviewed By: labath Subscribers: amccarth, compnerd, dexonsmith, mgorny, jfb, teemperor, lldb-commits Tags: #lldb Differential Revision: https://reviews.llvm.org/D63165 llvm-svn: 368759 --- lldb/third_party/Python/module/unittest2/unittest2/case.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lldb/third_party/Python/module/unittest2') diff --git a/lldb/third_party/Python/module/unittest2/unittest2/case.py b/lldb/third_party/Python/module/unittest2/unittest2/case.py index 7d6c54eff96..c567037ea8a 100644 --- a/lldb/third_party/Python/module/unittest2/unittest2/case.py +++ b/lldb/third_party/Python/module/unittest2/unittest2/case.py @@ -753,7 +753,7 @@ class TestCase(unittest.TestCase): elements = (seq_type_name.capitalize(), seq1_repr, seq2_repr) differing = '%ss differ: %s != %s\n' % elements - for i in xrange(min(len1, len2)): + for i in range(min(len1, len2)): try: item1 = seq1[i] except (TypeError, IndexError, NotImplementedError): -- cgit v1.2.3