comparison: src/eric7/Plugins/VcsPlugins/vcsGit/GitDiffParser.py
src/eric7/Plugins/VcsPlugins/vcsGit/GitDiffParser.py
- branch
- eric7
- changeset 9473
- 3f23dbf37dbe
- parent 9221
- bf71ee032bb4
- child 9653
- e67609152c5e
equal
deleted
inserted
replaced
5 |
5 |
6 """ |
6 """ |
7 Module implementing a class to store and parse diff output. |
7 Module implementing a class to store and parse diff output. |
8 """ |
8 """ |
9 |
9 |
|
10 import os |
10 import re |
11 import re |
11 import os |
|
12 |
12 |
13 |
13 |
14 class GitDiffParser: |
14 class GitDiffParser: |
15 """ |
15 """ |
16 Class implementing a class to store and parse diff output. |
16 Class implementing a class to store and parse diff output. |