Mercurial > public > mercurial-scm > hg-stable
comparison mercurial/revset.py @ 11304:8c377f2feee1
cleanups: unused variables
author | Dirkjan Ochtman <dirkjan@ochtman.nl> |
---|---|
date | Tue, 08 Jun 2010 09:30:33 +0200 |
parents | 3d0591a66118 |
children | 744d5b73f776 |
comparison
equal
deleted
inserted
replaced
11303:a1aad8333864 | 11304:8c377f2feee1 |
---|---|
286 if pat in repo[r]: | 286 if pat in repo[r]: |
287 s.append(r) | 287 s.append(r) |
288 continue | 288 continue |
289 else: | 289 else: |
290 for r in subset: | 290 for r in subset: |
291 c = repo[r] | |
292 for f in repo[r].manifest(): | 291 for f in repo[r].manifest(): |
293 if m(f): | 292 if m(f): |
294 s.append(r) | 293 s.append(r) |
295 continue | 294 continue |
296 return s | 295 return s |