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 ppperry
Recipients benjamin.peterson, brett.cannon, georg.brandl, ncoghlan, ppperry, serhiy.storchaka, yselivanov
Date 2016-07-14.12:33:51
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1468499631.41.0.70687115065.issue27514@psf.upfronthosting.co.za>
In-reply-to
Content
The following code:
for a in range(26):
  for b in range(26):
   for c in range(26):
    for d in range(26):
     for e in range(26):
      for f in range(26):
       for g in range(26):
        for h in range(26):
         for i in range(26):
          for j in range(26):
           for k in range(26):
            for l in range(26):
             for m in range(26):
              for o in range(26):
               for p in range(26):
                for q in range(26):
                 for r in range(26):
                  for s in range(26):
                   for t in range(26):
                    for u in range(26):
                     for v in range(26):
                       for w in range(26):
                         pass
fails to compile with `SystemError:too many statically nested blocks`, which was described as a serious bug in issue27081.
History
Date User Action Args
2016-07-14 12:33:51ppperrysetrecipients: + ppperry, brett.cannon, georg.brandl, ncoghlan, benjamin.peterson, serhiy.storchaka, yselivanov
2016-07-14 12:33:51ppperrysetmessageid: <1468499631.41.0.70687115065.issue27514@psf.upfronthosting.co.za>
2016-07-14 12:33:51ppperrylinkissue27514 messages
2016-07-14 12:33:51ppperrycreate