[issue24031] Add git support to make patchcheck

2015-04-23 Thread Roundup Robot
Roundup Robot added the comment: New changeset 0f9c43fb189d by Christian Heimes in branch '3.4': Issue #24031: make patchcheck now supports git checkouts, too. https://hg.python.org/cpython/rev/0f9c43fb189d New changeset d1b706e57fbe by Christian Heimes in branch 'default': Issue #24031: make

[issue24031] Add git support to make patchcheck

2015-04-23 Thread Christian Heimes
Christian Heimes added the comment: Thanks! -- resolution: - fixed stage: commit review - resolved status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue24031 ___

[issue24031] Add git support to make patchcheck

2015-04-22 Thread Berker Peksag
Berker Peksag added the comment: LGTM -- nosy: +berker.peksag stage: patch review - commit review ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue24031 ___

[issue24031] Add git support to make patchcheck

2015-04-22 Thread Christian Heimes
New submission from Christian Heimes: 'make patchcheck' supports only Mercurial checkouts. The tool uses the 'hg status' command to find modified files. My patch implements 'git status' support in order to make the patch check tool available on git checkouts. -- components: Build