Hugh Bellamy
c6fcbf0510
Python lint a bunch of files not currently python linted
2017-03-17 14:11:00 +07:00
Hugh Bellamy
4f23d61da0
Import print_function wherever we use print() in python code
2017-02-20 11:11:27 +07:00
practicalswift
6d1ae2a39c
[gardening] 2016 → 2017
2017-01-06 16:41:22 +01:00
practicalswift
797b80765f
[gardening] Use the correct base URL ( https://swift.org ) in references to the Swift website
...
Remove all references to the old non-TLS enabled base URL (http://swift.org )
2016-11-20 17:36:03 +01:00
practicalswift
0796eaad1f
[Python] Fix 80-column violations
2016-03-09 23:52:11 +01:00
practicalswift
30b66ea036
Merge pull request #1584 from practicalswift/python-3-compatible-print
...
[Python] Use Py3k compatible print operator: print "foo" → print("foo")
2016-03-09 08:00:49 +01:00
Brian Gesiak
c9000af795
Merge pull request #1526 from practicalswift/fix-pep8-violations-ii
...
[Python] Fix five classes of PEP-8 violations (E101/E111/E128/E302/W191)
2016-03-08 23:55:46 -05:00
practicalswift
0fd0c48648
[Python] Use Py3k compatible print operator: print "foo" → print("foo")
2016-03-08 23:10:52 +01:00
practicalswift
265835fdfc
[Python] Use consistent import ordering for Python code
...
Ordering used:
1.) standard library imports
2.) third party imports
3.) local package imports
Each group is individually alphabetized.
2016-03-07 23:25:16 +01:00
practicalswift
183da818df
[Python] Fix five classes of PEP-8 violations (E101/E111/E128/E302/W191)
...
* E101: indentation contains mixed spaces and tabs
* E111: indentation is not a multiple of four
* E128: continuation line under-indented for visual indent
* E302: expected 2 blank lines, found 1
* W191: indentation contains tabs
2016-03-07 22:36:23 +01:00
Slava Pestov
1fef536d62
resilient-test-helper: Add --no-backward-deployment flag
...
This is used when the application changes in an incompatible way.
2016-03-03 07:37:00 -08:00
Luke Larson
c011d5f550
[rth] Flush stdout after print for correct output ordering
2016-02-17 18:11:36 -08:00
Luke Larson
24860d1e67
[rth] Don't raise an exception if tmp_dir doesn't exist
2016-02-17 11:51:58 -08:00
practicalswift
10b3e63b0f
[Python] Fix two small PEP8 violations in recently introduced file "rth"
...
Before this commit:
```
$ flake8
./utils/rth:34:17: E127 continuation line over-indented for visual indent
./utils/rth:67:27: E127 continuation line over-indented for visual indent
$
```
After this commit:
```
$ flake8
$
```
2016-02-17 07:39:11 +01:00
Luke Larson
f53db0ebd3
[rth] Add resilience test helper utility
2016-02-16 18:52:34 -08:00