at 25.11-pre 482 B view raw
1diff --git a/setupbase.py b/setupbase.py 2index 0ce0ac8..7762e23 100644 3--- a/setupbase.py 4+++ b/setupbase.py 5@@ -659,7 +659,7 @@ def _translate_glob(pat): 6 translated_parts.append(_translate_glob_part(part)) 7 os_sep_class = '[%s]' % re.escape(SEPARATORS) 8 res = _join_translated(translated_parts, os_sep_class) 9- return '{res}\\Z(?ms)'.format(res=res) 10+ return '(?ms){res}\\Z'.format(res=res) 11 12 13 def _join_translated(translated_parts, os_sep_class):