Merge pull request #4318 from ThomasWaldmann/workaround-backslash-issue

work around the backslash issue, see #4280
This commit is contained in:
TW 2019-02-05 03:35:46 +01:00 committed by GitHub
commit 38b40e805e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -2175,7 +2175,7 @@ class Archiver:
any number of characters, '?' matching any single character, '[...]' any number of characters, '?' matching any single character, '[...]'
matching any single character specified, including ranges, and '[!...]' matching any single character specified, including ranges, and '[!...]'
matching any character not specified. For the purpose of these patterns, matching any character not specified. For the purpose of these patterns,
the path separator ('\\' for Windows and '/' on other systems) is not the path separator (backslash for Windows and '/' on other systems) is not
treated specially. Wrap meta-characters in brackets for a literal treated specially. Wrap meta-characters in brackets for a literal
match (i.e. `[?]` to match the literal character `?`). For a path match (i.e. `[?]` to match the literal character `?`). For a path
to match a pattern, the full path must match, or it must match to match a pattern, the full path must match, or it must match
@ -2196,7 +2196,7 @@ class Archiver:
shell patterns regular expressions are not required to match the full shell patterns regular expressions are not required to match the full
path and any substring match is sufficient. It is strongly recommended to path and any substring match is sufficient. It is strongly recommended to
anchor patterns to the start ('^'), to the end ('$') or both. Path anchor patterns to the start ('^'), to the end ('$') or both. Path
separators ('\\' for Windows and '/' on other systems) in paths are separators (backslash for Windows and '/' on other systems) in paths are
always normalized to a forward slash ('/') before applying a pattern. The always normalized to a forward slash ('/') before applying a pattern. The
regular expression syntax is described in the `Python documentation for regular expression syntax is described in the `Python documentation for
the re module <https://docs.python.org/3/library/re.html>`_. the re module <https://docs.python.org/3/library/re.html>`_.