Message3066

Author pjenvey
Recipients pjenvey, tristan
Date 2008-03-07.06:15:44
SpamBayes Score 0.0013786873
Marked as misclassified No
Message-id <1204870545.42.0.190946422342.issue1006@psf.upfronthosting.co.za>
In-reply-to
Content
This was broke by my r4188 when I removed the getattr on a module 
automatically triggering an import (which is more correct). it exposed a 
bug in __import__ -- it totally ignores the fromlist =[

>>> __import__('a.b',{}, {}, ('c',))
<module 'a.b' from 'a/b/__init__.py'>
>>> assert 'a.b.c' in sys.modules
Traceback (innermost last):
  File "<console>", line 1, in ?
AssertionError:
History
Date User Action Args
2008-03-07 06:15:45pjenveysetspambayes_score: 0.00137869 -> 0.0013786873
recipients: + pjenvey, tristan
2008-03-07 06:15:45pjenveysetspambayes_score: 0.00137869 -> 0.00137869
messageid: <1204870545.42.0.190946422342.issue1006@psf.upfronthosting.co.za>
2008-03-07 06:15:45pjenveylinkissue1006 messages
2008-03-07 06:15:44pjenveycreate