Details
Details
- Reviewers
indygreg Alphare pulkit - Group Reviewers
hg-reviewers - Commits
- rHGbbd154627a72: idirstate: remove now non-public _map attribute
Diff Detail
Diff Detail
- Repository
- rHG Mercurial
- Lint
Lint Skipped - Unit
Unit Tests Skipped
| indygreg | |
| Alphare | |
| pulkit |
| hg-reviewers |
| Lint Skipped |
| Unit Tests Skipped |
| Path | Packages | |||
|---|---|---|---|---|
| M | mercurial/interfaces/dirstate.py (7 lines) |
| Commit | Parents | Author | Summary | Date |
|---|---|---|---|---|
| 31d317132c17 | 47ce45f3350a | Augie Fackler | Sep 10 2019, 9:42 AM |
| released. | released. | ||||
| ''' | ''' | ||||
| def pendingparentchange(): | def pendingparentchange(): | ||||
| '''Returns true if the dirstate is in the middle of a set of changes | '''Returns true if the dirstate is in the middle of a set of changes | ||||
| that modify the dirstate parent. | that modify the dirstate parent. | ||||
| ''' | ''' | ||||
| _map = interfaceutil.Attribute( | |||||
| """Return the dirstate contents (see documentation for dirstatemap). | |||||
| TODO this should not be exposed. | |||||
| """ | |||||
| ) | |||||
| def hasdir(d): | def hasdir(d): | ||||
| pass | pass | ||||
| _ignore = interfaceutil.Attribute('Matcher for ignored files.') | _ignore = interfaceutil.Attribute('Matcher for ignored files.') | ||||
| _checklink = interfaceutil.Attribute('Callable for checking symlinks.') | _checklink = interfaceutil.Attribute('Callable for checking symlinks.') | ||||
| _checkexec = interfaceutil.Attribute('Callable for checking exec bits.') | _checkexec = interfaceutil.Attribute('Callable for checking exec bits.') | ||||