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 Alexander.Belopolsky
Recipients Alexander.Belopolsky, gvanrossum, jgatkinsn, loewis
Date 2010-04-27.22:48:05
SpamBayes Score 6.74918e-06
Marked as misclassified No
Message-id <1272408487.07.0.750641034133.issue1636@psf.upfronthosting.co.za>
In-reply-to
Content
I don't have much to contribute other than a simple test to reproduce the issue:

>>> code = """                                                                                                                                                                                  
... def f(%s):                                                                                                                                                                                  
...   pass                                                                                                                                                                                      
... """ % ','.join('a%d' % i for i in range(300))
>>> exec(code)
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "<string>", line 2
SyntaxError: more than 255 arguments
History
Date User Action Args
2010-04-27 22:48:07Alexander.Belopolskysetrecipients: + Alexander.Belopolsky, gvanrossum, loewis, jgatkinsn
2010-04-27 22:48:07Alexander.Belopolskysetmessageid: <1272408487.07.0.750641034133.issue1636@psf.upfronthosting.co.za>
2010-04-27 22:48:05Alexander.Belopolskylinkissue1636 messages
2010-04-27 22:48:05Alexander.Belopolskycreate