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 pm67nz
Recipients
Date 2004-06-21.09:26:56
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
This fragment of import.c:

  mtime = PyOS_GetLastModificationTime(pathname, fp);
  if (mtime == (time_t)(-1))
     return NULL;

is missing a PyErr_SetString(), so in at least one circumstance (an 
__init__.py file with an apparent mtime of 1 Jan 1970 created by a 
bug in darcs on debian linux) it produces "SystemError: NULL 
result without error in PyObject_Call".
History
Date User Action Args
2007-08-23 14:22:45adminlinkissue976608 messages
2007-08-23 14:22:45admincreate