If I check the 'Use space before and after operators? (+, -, /, *, //, **, 
etc.)' in the Eclipse>PyDev>Editor>Code Style> Code Formatter, PyDev will 
insert a space before a negative number in a keyword parameter declaration. 
Pep8.py will then post a warning 'E251 no spaces around keyword / parameter 
equals'.

For example:
foo(bar= -25)

So which is right? Should there be a space before a negative number?
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to