Details
Details
Diff Detail
Diff Detail
- Repository
 - rC Clang
 
Event Timeline
| docs/tools/dump_ast_matchers.py | ||
|---|---|---|
| 11 | Missing follow-up change in the rest of the file.  | |
| tools/scan-view/bin/scan-view | ||
|---|---|---|
| 15 | Python 3's urlopen is equivalent to urllib2.urlopen not urllib.urlopen so I recommend importing from urllib2 instead.  | |
| tools/scan-view/bin/scan-view | ||
|---|---|---|
| 15 | This should be the same as dump_ast_matchers.py i.e.: try:
    from urllib.request import urlopen
except ImportError:
    from urllib2 import urlopen | |
| tools/scan-view/bin/scan-view | ||
|---|---|---|
| 15 | This still isn't done.  | |
Missing follow-up change in the rest of the file.