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 ggenellina
Recipients
Date 2007-05-25.09:04:14
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
I don't see any "Attach" button...
Just add these lines near the top of the test script:

original__import = __import__
def myimport(name, *args):
  print "import",repr(name)
  return original__import(name,*args)
  #end myimport
__builtins__.__import__ = myimport
History
Date User Action Args
2007-08-23 14:54:06adminlinkissue1724366 messages
2007-08-23 14:54:06admincreate