Comment #5 on issue 1511 by combacsa: Diffs containing only indentation
changes causes the diff viewer to look empty
http://code.google.com/p/reviewboard/issues/detail?id=1511
I'm using Python. In Python, whitespace makes changes on indentation level
- which means the code block itself is totally changed. For example,
a.py
"""
if 1 == 2:
print "hello"
print "world"
"""
We will got nothing out. But
b.py
"""
if 1 == 2:
print "hello"
print "world"
"""
we will got "world" printed out on standard output. "Whitespace" changes
everything.
So it is a huge problem for Python users.
--
You received this message because you are subscribed to the Google Groups
"reviewboard-issues" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/reviewboard-issues?hl=en.