Message188463
| Author |
vstinner |
| Recipients |
chris.jerdonek, ezio.melotti, gangesmaster, isoschiz, mark.dickinson, mrabarnett, serhiy.storchaka, vstinner |
| Date |
2013年05月05日.20:17:02 |
| SpamBayes Score |
-1.0 |
| Marked as misclassified |
Yes |
| Message-id |
<1367785022.91.0.317607761859.issue16741@psf.upfronthosting.co.za> |
| In-reply-to |
| Content |
int_from_str.patch:
+ strobj = PySequence_GetSlice(u, 0, 200);
+ if (strobj != NULL) {
+ PyErr_Format(PyExc_ValueError,
+ "invalid literal for int() with base %d: %R",
+ base, strobj);
+ Py_DECREF(strobj);
+ }
Oh, it remembers me that #7330 is still open. |
|