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 Nixawk
Recipients Nixawk
Date 2017-01-10.06:32:22
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1484029943.51.0.404854509621.issue29222@psf.upfronthosting.co.za>
In-reply-to
Content
I'v tested the following steps against python3.5 and python3.6. Python shell hangs on.

$ python3.6
Python 3.6.0 (v3.6.0:41df79263a11, Dec 22 2016, 17:23:13)
[GCC 4.2.1 (Apple Inc. build 5666) (dot 3)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import itertools
>>> counter = itertools.count()
>>> next(counter)
0
>>> next(counter)
1
>>> 'count' in counter




^C^C^C^C^C^C^C^C



^C^C^C


^D
^Z
[1]  + 47254 suspended  python3.6
~ ->> fg
[1]  + 47254 continued  python3.6


^C^C^Z
[1]  + 47254 suspended  python3.6
History
Date User Action Args
2017-01-10 06:32:23Nixawksetrecipients: + Nixawk
2017-01-10 06:32:23Nixawksetmessageid: <1484029943.51.0.404854509621.issue29222@psf.upfronthosting.co.za>
2017-01-10 06:32:23Nixawklinkissue29222 messages
2017-01-10 06:32:22Nixawkcreate