j143 opened a new pull request #1432:
URL: https://github.com/apache/systemds/pull/1432
```python
>>> regex1 = fnmatch.translate('systemds-*-bin.zip')
>>> regex1
'(?s:systemds\\-.*\\-bin\\.zip)\\Z'
>>> resobj1 = re.compile(regex1)
>>> resobj1.match('systemds-2.3.0-SNAPSHOT-bin.zip')
<re.Match object; span=(0, 31), match='systemds-2.3.0-SNAPSHOT-bin.zip'>
>>> resobj1.match('systemds-2.3.0-bin.zip')
<re.Match object; span=(0, 22), match='systemds-2.3.0-bin.zip'>
```
Resolves bug with 8df051fedfd60c9613c6aa4158af0c1b89968f48
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]