[issue6598] calling email.utils.make_msgid frequently has a non-trivial probability of generating colliding ids

Antoine Pitrou report at bugs.python.org
Thu Aug 6 20:19:01 CEST 2009


Antoine Pitrou <pitrou at free.fr> added the comment:

Is it ok if the message id is predictable?
Besides, _gen_next_number() can more efficiently be written as:

_gen_next_number = itertools.cycle(xrange(N))

----------
nosy: +pitrou

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue6598>
_______________________________________


More information about the Python-bugs-list mailing list