This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author pitrou
Recipients benjamin.peterson, georg.brandl, giampaolo.rodola, larry, neologix, pitrou, sbt, sultanqasim
Date 2013-04-14.21:32:37
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1365975157.75.0.920173837257.issue17707@psf.upfronthosting.co.za>
In-reply-to
Content
I don't understand what you're worrying about here. This is just because of evaluation order:

>>> import itertools
>>> it = itertools.count()
>>> f = it.__next__
>>> f() - f()
-1
>>> f() - f()
-1
History
Date User Action Args
2013-04-14 21:32:37pitrousetrecipients: + pitrou, georg.brandl, larry, giampaolo.rodola, benjamin.peterson, neologix, sbt, sultanqasim
2013-04-14 21:32:37pitrousetmessageid: <1365975157.75.0.920173837257.issue17707@psf.upfronthosting.co.za>
2013-04-14 21:32:37pitroulinkissue17707 messages
2013-04-14 21:32:37pitroucreate