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 davidszotten@gmail.com
Recipients Julian.Gindi, berker.peksag, brett.cannon, davidszotten@gmail.com, eric.snow, ezio.melotti, rhettinger
Date 2014-08-28.20:12:00
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1409256720.17.0.526791446065.issue21720@psf.upfronthosting.co.za>
In-reply-to
Content
after some trial and error it only appears to break for 3rd party packages (all 20 or so i happened to have installed), whereas everything i tried importing from the standard library worked fine

```
>>> __import__('requests.', fromlist=[u'get'])
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: Item in ``from list'' not a string

>>> __import__('os.', fromlist=[u'path'])
<module 'os' from '<snip (virtualenv)>/lib/python2.7/os.pyc'>
```
History
Date User Action Args
2014-08-28 20:12:00davidszotten@gmail.comsetrecipients: + davidszotten@gmail.com, brett.cannon, rhettinger, ezio.melotti, eric.snow, berker.peksag, Julian.Gindi
2014-08-28 20:12:00davidszotten@gmail.comsetmessageid: <1409256720.17.0.526791446065.issue21720@psf.upfronthosting.co.za>
2014-08-28 20:12:00davidszotten@gmail.comlinkissue21720 messages
2014-08-28 20:12:00davidszotten@gmail.comcreate