summaryrefslogtreecommitdiffstats
path: root/lldb/examples/synthetic/unordered_multi.py
Commit message (Collapse)AuthorAgeFilesLines
* Python 3 - modernize exception catching syntax.Zachary Turner2015-11-031-1/+1
| | | | | | | | | | | | | | | | | Old-style syntax: `except Exception, e:` New-style syntax: `except Exception as e:` These two statements are identical, except that the former has been deprecated for may versions, and was removed in Python 3. This converts everything to use the new syntax (which also works in Python 2). I had to convert unittest2 as well. What we really need to do is just delete unittest2, and use unittest instead since it is a standard module that ships with every Python distribution. But this is the path of least resistance for now, although at some point we will really need to do it. llvm-svn: 251968
* Fix typosBruce Mitchener2015-07-021-3/+3
| | | | | | | | | | | | Summary: Fixes more typos. Reviewers: clayborg Subscribers: lldb-commits-list Differential Revision: http://reviews.llvm.org/D10898 llvm-svn: 241289
* This is an example synthetic provider for libc++ unordered (multi) maps&setEnrico Granata2013-09-041-0/+110
Thanks to Jared Grubb for writing it and sharing it! llvm-svn: 189964
OpenPOWER on IntegriCloud