26 except ImportError: |
26 except ImportError: |
27 pass |
27 pass |
28 |
28 |
29 VcsConflictMarkerRegExpList = ( |
29 VcsConflictMarkerRegExpList = ( |
30 re.compile( |
30 re.compile( |
|
31 r"""^<<<<<<< .*?\|\|\|\|\|\|\| .*?=======.*?>>>>>>> .*?$""", |
|
32 re.MULTILINE | re.DOTALL |
|
33 ), |
|
34 re.compile( |
31 r"""^<<<<<<< .*?=======.*?>>>>>>> .*?$""", |
35 r"""^<<<<<<< .*?=======.*?>>>>>>> .*?$""", |
32 re.MULTILINE | re.DOTALL |
36 re.MULTILINE | re.DOTALL |
33 ), |
37 ), |
34 re.compile( |
|
35 r"""^<<<<<<< .*?||||||| .*?=======.*?>>>>>>> .*?$""", |
|
36 re.MULTILINE | re.DOTALL |
|
37 ) |
|
38 ) |
38 ) |
39 |
39 |
40 def initService(): |
40 def initService(): |
41 """ |
41 """ |
42 Initialize the service and return the entry point. |
42 Initialize the service and return the entry point. |