Message163240
| Author |
r.david.murray |
| Recipients |
amaury.forgeotdarc, brett.cannon, r.david.murray |
| Date |
2012年06月20日.01:03:49 |
| SpamBayes Score |
-1.0 |
| Marked as misclassified |
Yes |
| Message-id |
<1340154229.74.0.123054832096.issue15111@psf.upfronthosting.co.za> |
| In-reply-to |
| Content |
To clarify Amaury's example:
rdmurray@hey:~/python/p32>./python -c "from distutils import msvc9compiler"
Traceback (most recent call last):
File "<string>", line 1, in <module>
File "/home/rdmurray/python/p32/Lib/distutils/msvc9compiler.py", line 27, in <module>
import winreg
ImportError: No module named winreg
rdmurray@hey:~/python/p33>./python -c "from distutils import msvc9compiler"
Traceback (most recent call last):
File "<string>", line 1, in <module>
ImportError: cannot import name msvc9compiler
So there is definitely some lost information in 3.3 compared to 3.2 in the 'import from' case. |
|
History
|
|---|
| Date |
User |
Action |
Args |
| 2012年06月20日 01:03:49 | r.david.murray | set | recipients:
+ r.david.murray, brett.cannon, amaury.forgeotdarc |
| 2012年06月20日 01:03:49 | r.david.murray | set | messageid: <1340154229.74.0.123054832096.issue15111@psf.upfronthosting.co.za> |
| 2012年06月20日 01:03:49 | r.david.murray | link | issue15111 messages |
| 2012年06月20日 01:03:49 | r.david.murray | create |
|