- Python Home
- About
- News
- Documentation
- Downloads
- Community
- Foundation
- Developer's Guide
- Issue Tracker
- Issues
- Summaries
- User
- Administration
- Help
Message377441
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 | iritkatriel |
|---|---|
| Recipients | Mark.Shannon, iritkatriel, myzhang1029, serhiy.storchaka |
| Date | 2020-09-24.08:14:09 |
| SpamBayes Score | -1.0 |
| Marked as misclassified | Yes |
| Message-id | <1600935249.6.0.482672863606.issue39934@roundup.psfhosted.org> |
| In-reply-to |
| Content | |
|---|---|
Another oddity:
This gives the error:
for x in '1':
for x in '2':
for x in '3':
for x in '4':
for x in '5':
for x in '6':
for x in '8':
for x in '9':
for x in '10':
for x in '11':
for x in '12':
for x in '13':
for x in '14':
for x in '15':
for x in '16':
for x in '17':
for x in '18':
for x in '19':
for x in '20':
for x in '21':
for x in '22':
pass
but this doesn't:
for x in '1':
for x in '2':
for x in '3':
for x in '4':
for x in '5':
for x in '6':
for x in '8':
for x in '9':
for x in '10':
for x in '11':
for x in '12':
for x in '13':
for x in '14':
for x in '15':
for x in '16':
for x in '17':
for x in '18':
for x in '19':
for x in '20':
for x in '21':
pass
else:
for x in '22':
pass |
|
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2020-09-24 08:14:09 | iritkatriel | set | recipients: + iritkatriel, Mark.Shannon, serhiy.storchaka, myzhang1029 |
| 2020-09-24 08:14:09 | iritkatriel | set | messageid: <1600935249.6.0.482672863606.issue39934@roundup.psfhosted.org> |
| 2020-09-24 08:14:09 | iritkatriel | link | issue39934 messages |
| 2020-09-24 08:14:09 | iritkatriel | create | |

