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 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:02vstinnersetrecipients: + vstinner, mark.dickinson, gangesmaster, ezio.melotti, mrabarnett, chris.jerdonek, serhiy.storchaka, isoschiz
2013-05-05 20:17:02vstinnersetmessageid: <1367785022.91.0.317607761859.issue16741@psf.upfronthosting.co.za>
2013-05-05 20:17:02vstinnerlinkissue16741 messages
2013-05-05 20:17:02vstinnercreate