Bzr allows users to flag revisions with related bugs. Any revision can have multiple associated bugs, represented by (url, status).
Description
Description
Revisions and Commits
Revisions and Commits
| rDLDBZR BZR loader | |||
| D6344 | rDLDBZR04b9a34cf741 Add a non-optimized non-incremental Bazaar loader | ||
Related Objects
Related Objects
Event Timeline
Comment Actions
It seems like the expected type of Tuple[Tuple[bytes, bytes], ...] does not offer any nesting opportunities. Should we have an ad-hoc coding of sorts? Am I just missing something?
Comment Actions
Should we have an ad-hoc coding of sorts?
Yes, probably Something like: ((b"bug", b"status1 url1"), (b"bug", b"status2 url2"), ...), assuming statuses cannot contain spaces
Comment Actions
Is this information fully intrinsic, or can it be modified without the revision id changing ?