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 | robin.stocker |
|---|---|
| Recipients | georg.brandl, gvanrossum, robin.stocker |
| Date | 2008年01月08日.01:31:09 |
| SpamBayes Score | 0.0013435814 |
| Marked as misclassified | No |
| Message-id | <1199755871.02.0.596024702192.issue1745@psf.upfronthosting.co.za> |
| In-reply-to |
| Content | |
|---|---|
Thanks for the feedback!
It's on line 111 in test_collections.py::
n = 10000
import string, random
names = [''.join([random.choice(string.letters) for j in
range(10)]) for i in range(n)]
Big = namedtuple('Big', names)
b = Big(*range(n))
I think the condition is triggered because Big's __new__ (which seems to
be dynamically generated by namedtuple using exec) has an argument list
with 10000 arguments.
Ok, I'm now looking through SVN logs and have already added some more
changes to my patchset.
Thanks, I had changed MAGIC but didn't know that marshal.c uses it.
So I won't handle documentation in this issue then. |
|
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2008年01月08日 01:31:11 | robin.stocker | set | spambayes_score: 0.00134358 -> 0.0013435814 recipients: + robin.stocker, gvanrossum, georg.brandl |
| 2008年01月08日 01:31:11 | robin.stocker | set | spambayes_score: 0.00134358 -> 0.00134358 messageid: <1199755871.02.0.596024702192.issue1745@psf.upfronthosting.co.za> |
| 2008年01月08日 01:31:09 | robin.stocker | link | issue1745 messages |
| 2008年01月08日 01:31:09 | robin.stocker | create | |