aboutsummaryrefslogtreecommitdiff
path: root/scripts/maintenance/readProbeSetSE_v7.py
AgeCommit message (Collapse)Author
2020-08-27Replace "string.split" & "string.join" with python's inbuilt methodsBonfaceKilz
2020-08-19Make Python more idiomaticBonfaceKilz
Run `2to3-3.8 -f idioms -w .` See: <https://docs.python.org/2/library/2to3.html#2to3fixer-idioms>
2020-08-19Convert `raw_input` to `input`BonfaceKilz
Run `2to3-3.8 -f raw_input -w .` See: <https://docs.python.org/2/library/2to3.html#2to3fixer-raw_input>
2020-08-19Change `dict.has_key(key)` to `key in dict`BonfaceKilz
Run `2to3-3.8 -f has_key -w .` See: <https://docs.python.org/2/library/2to3.html#2to3fixer-has_key>
2020-08-19Wrap `map()` in a `list` callBonfaceKilz
Run `2to3-3.8 -f map -w .` See: <https://docs.python.org/2/library/2to3.html#2to3fixer-map>
2020-08-18Wrap print statements in parenthesesBonfaceKilz
2020-08-18Replace DOS style line endings with UNIX style onesBonfaceKilz
* scripts/maintenance/readProbeSetSE_v7.py: Run *dos2unix* against file
2020-08-18Apply pep8BonfaceKilz
* scripts/maintenance/readProbeSetSE_v7.py: Apply pep8 to file to replace tabs with spaces and use correct indentation.
2018-04-03@acenteno added data upload scripts into main repoPjotr Prins