We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
installed in 2.7 virtualenv, ran against and svn change like so: pydiff somecheckout/.svn/pristine/1b/1bdxxx.svn-base somecheckout/path/somefile.py
got diff like this:
@@ -6730,7 +6730,7 @@ 'STOP_CODE', 'POP_TOP', 'JUMP_FORWARD', - 'BREAK_LOOP', + 'YIELD_VALUE', 'STOP_CODE', 'LOAD_FAST', '<6>',
[4 more similar blocks snipped]
the actual change was in this form:
- somecall(foo(value)) + tmp = foo(value) + somecall(tmp)
The text was updated successfully, but these errors were encountered:
oh I see it's by design...
I suppose I expected to see these changes annotated by source code line or something....
feel free to close.
Sorry, something went wrong.
No branches or pull requests
installed in 2.7 virtualenv, ran against and svn change like so:
pydiff somecheckout/.svn/pristine/1b/1bdxxx.svn-base somecheckout/path/somefile.py
got diff like this:
[4 more similar blocks snipped]
the actual change was in this form:
The text was updated successfully, but these errors were encountered: