[Python-Dev] Retrieve an arbitrary element from a setwithoutremoving it

Alexander Belopolsky alexander.belopolsky at gmail.com
Thu Nov 5 22:09:11 CET 2009


On Thu, Nov 5, 2009 at 3:43 PM, Chris Bergstresser <chris at subtlety.com> wrote:
> .. and "x = iter(s).next()" raises a StopIteration
> exception.

And that's why the documented recipe should probably recommend
next(iter(s), default) instead.  Especially because iter(s).next() is
not even valid code in 3.0.


More information about the Python-Dev mailing list