equal
deleted
inserted
replaced
1806 # logically divide up the task, generate the group. |
1806 # logically divide up the task, generate the group. |
1807 def gengroup(): |
1807 def gengroup(): |
1808 # The set of changed files starts empty. |
1808 # The set of changed files starts empty. |
1809 changedfiles = {} |
1809 changedfiles = {} |
1810 collect = changegroup.collector(cl, msng_mnfst_set, changedfiles) |
1810 collect = changegroup.collector(cl, msng_mnfst_set, changedfiles) |
1811 |
1811 |
1812 # Create a changenode group generator that will call our functions |
1812 # Create a changenode group generator that will call our functions |
1813 # back to lookup the owning changenode and collect information. |
1813 # back to lookup the owning changenode and collect information. |
1814 group = cl.group(msng_cl_lst, identity, collect) |
1814 group = cl.group(msng_cl_lst, identity, collect) |
1815 for chnk in group: |
1815 for chnk in group: |
1816 yield chnk |
1816 yield chnk |