diff options
| author | Aaron Smith <aaron.smith@microsoft.com> | 2019-08-13 22:18:01 +0000 |
|---|---|---|
| committer | Aaron Smith <aaron.smith@microsoft.com> | 2019-08-13 22:18:01 +0000 |
| commit | 5146a9ea5d8d3c91cee5d2d2ad4c50491e7a4c58 (patch) | |
| tree | 35b54606f3f707ba55852b196d45161be9fd5a0a /lldb/third_party/Python/module/unittest2 | |
| parent | b809187a6b4229569f61d9dc3c59fd4ec0775448 (diff) | |
| download | bcm5719-llvm-5146a9ea5d8d3c91cee5d2d2ad4c50491e7a4c58.tar.gz bcm5719-llvm-5146a9ea5d8d3c91cee5d2d2ad4c50491e7a4c58.zip | |
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
Diffstat (limited to 'lldb/third_party/Python/module/unittest2')
| -rw-r--r-- | lldb/third_party/Python/module/unittest2/unittest2/case.py | 2 |
1 files changed, 1 insertions, 1 deletions
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): |

