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. |
|
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2013-05-05 20:17:02 | vstinner | set | recipients: + vstinner, mark.dickinson, gangesmaster, ezio.melotti, mrabarnett, chris.jerdonek, serhiy.storchaka, isoschiz |
| 2013-05-05 20:17:02 | vstinner | set | messageid: <1367785022.91.0.317607761859.issue16741@psf.upfronthosting.co.za> |
| 2013-05-05 20:17:02 | vstinner | link | issue16741 messages |
| 2013-05-05 20:17:02 | vstinner | create | |