This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #! /usr/bin/python3 | |
| """Translate from the legacy if-else text syntax to the standard syntax | |
| """ | |
| import argparse | |
| import glob | |
| import os | |
| import subprocess | |
| import sys |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #! /usr/bin/python3 | |
| """Ensure all identifiers match the supported format. | |
| """ | |
| import argparse | |
| import glob | |
| import os | |
| import subprocess | |
| import sys |
OlderNewer