summaryrefslogtreecommitdiff
path: root/python
Commit message (Expand)AuthorAgeFilesLines
* PEP8: line up a couple of listsDouglas Bagnall2018-08-241-7/+7
* PEP8: improve formatting around various operatorsDouglas Bagnall2018-08-242-3/+3
* PEP8: improve formatting around bit-wise OR ("|")Douglas Bagnall2018-08-242-23/+27
* dcerpc py tests: improve argument formattingDouglas Bagnall2018-08-241-3/+4
* dcerpc/dns_server tests: use record malformed as probably intendedDouglas Bagnall2018-08-241-1/+1
* PEP8: add spaces after operatorsDouglas Bagnall2018-08-245-9/+9
* PEP8: better formatting of (CONST1|CONST2)Douglas Bagnall2018-08-244-5/+14
* PEP8: improve spacing around colonsDouglas Bagnall2018-08-243-10/+11
* PEP8: more space before equalsDouglas Bagnall2018-08-241-1/+1
* PEP8: fix W391: blank line at end of fileJoe Guo2018-08-2412-16/+0
* PEP8: fix W291: trailing whitespaceJoe Guo2018-08-243-7/+7
* PEP8: fix E713: test for membership should be 'not in'Joe Guo2018-08-2412-69/+69
* PEP8: fix E712: comparison to False should be 'if cond is False:' or 'if not ...Joe Guo2018-08-243-4/+4
* PEP8: fix E711: comparison to None should be 'if cond is not None:'Joe Guo2018-08-245-12/+12
* PEP8: fix E703: statement ends with a semicolonJoe Guo2018-08-2411-22/+22
* PEP8: fix E701: multiple statements on one line (colon)Joe Guo2018-08-242-3/+6
* PEP8: fix E502: the backslash is redundant between bracketsJoe Guo2018-08-249-76/+76
* PEP8: fix E401: multiple imports on one lineJoe Guo2018-08-2413-14/+37
* PEP8: fix E306: expected 1 blank line before a nested definition, found 0Joe Guo2018-08-243-0/+27
* PEP8: fix E305: expected 2 blank lines after class or function definition, fo...Joe Guo2018-08-2421-0/+25
* PEP8: fix E303: too many blank lines (2)Joe Guo2018-08-2454-136/+0
* PEP8: fix E302: expected 2 blank lines, found 1Joe Guo2018-08-24122-0/+308
* PEP8: fix E301: expected 1 blank line, found 0Joe Guo2018-08-248-0/+17
* PEP8: fix E265: block comment should start with '# 'Joe Guo2018-08-2418-36/+36
* PEP8: fix E261: at least two spaces before inline commentJoe Guo2018-08-2416-30/+30
* PEP8: fix E251: unexpected spaces around keyword / parameter equalsJoe Guo2018-08-2412-118/+118
* PEP8: fix E241: multiple spaces after ','Joe Guo2018-08-2411-50/+50
* PEP8: fix E231: missing whitespace after ','Joe Guo2018-08-2444-214/+214
* PEP8: fix E228: missing whitespace around modulo operatorJoe Guo2018-08-243-7/+7
* PEP8: fix E227: missing whitespace around bitwise or shift operatorJoe Guo2018-08-247-11/+11
* PEP8: fix E226: missing whitespace around arithmetic operatorJoe Guo2018-08-2435-153/+153
* PEP8: fix E225: missing whitespace around operatorJoe Guo2018-08-2424-88/+88
* PEP8: fix E222: multiple spaces after operatorJoe Guo2018-08-2416-45/+45
* PEP8: fix E211: whitespace before '('Joe Guo2018-08-242-3/+2
* PEP8: fix E203: whitespace before ':'Joe Guo2018-08-2414-148/+148
* PEP8: fix E202: whitespace before ')'Joe Guo2018-08-2426-90/+90
* PEP8: fix E201: whitespace after '('Joe Guo2018-08-2426-110/+110
* PEP8: fix E131: continuation line unaligned for hanging indentJoe Guo2018-08-244-7/+7
* PEP8: fix E128: continuation line under-indented for visual indentJoe Guo2018-08-2479-1195/+1274
* PEP8: fix E127: continuation line over-indented for visual indentJoe Guo2018-08-2436-448/+448
* PEP8: fix E125: continuation line with same indent as next logical lineJoe Guo2018-08-244-6/+6
* PEP8: fix E124: closing bracket does not match visual indentationJoe Guo2018-08-248-17/+17
* PEP8: fix E123: closing bracket does not match indentation of opening bracket...Joe Guo2018-08-2442-212/+212
* PEP8: fix E122: continuation line missing indentation or outdentedJoe Guo2018-08-249-288/+288
* PEP8: fix E121: continuation line under-indented for hanging indentJoe Guo2018-08-247-18/+18
* PEP8: fix E115: expected an indented block (comment)Joe Guo2018-08-241-1/+1
* PEP8: fix E111: indentation is not a multiple of fourJoe Guo2018-08-247-54/+54
* PEP8: fix W601: .has_key() is deprecated, use 'in'Joe Guo2018-08-242-6/+6
* PEP8: fix E731: do not assign a lambda expression, use a defJoe Guo2018-08-241-2/+6
* PEP8: fix E714: test for object identity should be 'is not'Joe Guo2018-08-241-2/+2