-
Notifications
You must be signed in to change notification settings - Fork 8
New issue
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
allow multiple matching solvables in print-reldeps #10
base: master
Are you sure you want to change the base?
allow multiple matching solvables in print-reldeps #10
Conversation
if len(found) > 1: | ||
if (i > 0): | ||
print() | ||
print("Solution #{}:".format(i + 1)) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this will make things non-parseable...
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
and it's actually not solution in any way ;)
@ignatenkobrain Heh, I just stumbled over this while trying out the different depchase functions and ran into this:
With my changes to show all solvables, I get this output:
What would be a better way to coping with this? Print the "smallest" solvable? |
No description provided.