bpo-31627: Make test_mailbox be lenient to empty hostname. (#3821)

This commit is contained in:
Serhiy Storchaka 2017-09-30 17:10:57 +03:00 committed by GitHub
parent 101a5e84ac
commit f4ea642cb6
1 changed files with 1 additions and 1 deletions

View File

@ -746,7 +746,7 @@ class TestMaildir(TestMailbox, unittest.TestCase):
hostname = hostname.replace(':', r'\072')
pid = os.getpid()
pattern = re.compile(r"(?P<time>\d+)\.M(?P<M>\d{1,6})P(?P<P>\d+)"
r"Q(?P<Q>\d+)\.(?P<host>[^:/]+)")
r"Q(?P<Q>\d+)\.(?P<host>[^:/]*)")
previous_groups = None
for x in range(repetitions):
tmp_file = self._box._create_tmp()