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 | jnferguson |
|---|---|
| Recipients | jnferguson |
| Date | 2008年04月08日.16:13:32 |
| SpamBayes Score | 0.0028095911 |
| Marked as misclassified | No |
| Message-id | <1207671213.37.0.514219749989.issue2591@psf.upfronthosting.co.za> |
| In-reply-to |
| Content | |
|---|---|
I don't think any of these SGI modules even get used, but they're really
buggy-- you guys might want to consider just dropping them all together.
When printing errors larger than 128 bytes a stack based overflow occurs.
44 static void
45 ErrorHandler(long code, const char *fmt, ...)
46 {
47 va_list args;
48 char buf[128];
49
50 va_start(args, fmt);
51 vsprintf(buf, fmt, args);
52 va_end(args);
53 PyErr_SetString(ErrorObject, buf);
54 } |
|
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2008年04月08日 16:13:33 | jnferguson | set | spambayes_score: 0.00280959 -> 0.0028095911 recipients: + jnferguson |
| 2008年04月08日 16:13:33 | jnferguson | set | spambayes_score: 0.00280959 -> 0.00280959 messageid: <1207671213.37.0.514219749989.issue2591@psf.upfronthosting.co.za> |
| 2008年04月08日 16:13:32 | jnferguson | link | issue2591 messages |
| 2008年04月08日 16:13:32 | jnferguson | create | |