changeset 51696 | 7f0cb9ee0534 |
parent 51686 | 493034cc3265 |
child 51699 | ca7bde5dbafb |
51695:bd1483fd7088 | 51696:7f0cb9ee0534 |
---|---|
35 |
35 |
36 from . import ( |
36 from . import ( |
37 error as faerror, |
37 error as faerror, |
38 revmap as revmapmod, |
38 revmap as revmapmod, |
39 ) |
39 ) |
40 |
|
41 |
40 |
42 # given path, get filelog, cached |
41 # given path, get filelog, cached |
43 @util.lrucachefunc |
42 @util.lrucachefunc |
44 def _getflog(repo, path): |
43 def _getflog(repo, path): |
45 return repo.file(path) |
44 return repo.file(path) |