This rule is deprecated; use {rule:python:S5905} instead.
Parentheses are not required after the assert, del, elif, except, for,
if, not, raise, return, while, and yield keywords. Similarly,
parentheses are not required after in in a for loop. Using parentheses unnecessarily impairs readability, and therefore,
they should be omitted.
x = 1
while (x < 10):
print "x is now %d" % (x)
x += 1
x = 1
while x < 10:
print "x is now %d" % (x)
x += 1