Show More
@@ -156,9 +156,10 b' def andset(repo, subset, x, y):' | |||
|
156 | 156 | return getset(repo, getset(repo, subset, x), y) |
|
157 | 157 | |
|
158 | 158 | def orset(repo, subset, x, y): |
|
159 |
|
|
|
160 | s |= set(getset(repo, [r for r in subset if r not in s], y)) | |
|
161 |
|
|
|
159 | xl = getset(repo, subset, x) | |
|
160 | s = set(xl) | |
|
161 | yl = getset(repo, [r for r in subset if r not in s], y) | |
|
162 | return xl + yl | |
|
162 | 163 | |
|
163 | 164 | def notset(repo, subset, x): |
|
164 | 165 | s = set(getset(repo, subset, x)) |
General Comments 0
You need to be logged in to leave comments.
Login now