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 srid
Recipients georg.brandl, srid
Date 2009-07-30.03:00:19
SpamBayes Score 0.0024292034
Marked as misclassified No
Message-id <1248922821.65.0.331966923516.issue6600@psf.upfronthosting.co.za>
In-reply-to
Content
I localized the error to line 248 in http://svn.python.org/view/python/
branches/release26-maint/Objects/fileobject.c?annotate=68135#248 
(brandl's change made 3 years ago)

  static PyObject *
  open_the_file(PyFileObject *f, char *name, char *mode)
  {
  [...]
    /* probably need to replace 'U' by 'rb' */
    newmode = PyMem_MALLOC(strlen(mode) + 3);
    if (!newmode) {
      PyErr_NoMemory();
      return NULL;
    }
History
Date User Action Args
2009-07-30 03:00:21sridsetrecipients: + srid, georg.brandl
2009-07-30 03:00:21sridsetmessageid: <1248922821.65.0.331966923516.issue6600@psf.upfronthosting.co.za>
2009-07-30 03:00:19sridlinkissue6600 messages
2009-07-30 03:00:19sridcreate