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 jmfauth
Recipients jmfauth
Date 2008-09-21.10:09:40
SpamBayes Score 4.9101394e-09
Marked as misclassified No
Message-id <1221991788.31.0.575741048418.issue3922@psf.upfronthosting.co.za>
In-reply-to
Content
3.0rc1: When toying and attempting to import the scrolledtext module, I
noticed the tkinter library path is no more by default included in the
sys.path.

Unfortunate omission or new Python 3.0 design?

C:\Python30>python
Python 3.0rc1 (r30rc1:66507, Sep 18 2008, 14:47:08) [MSC v.1500 32 bit
(Intel)]
on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> import sys
>>> for e in sys.path: print(e)
...

C:\Python30\python30.zip
C:\Python30\DLLs
C:\Python30\lib
C:\Python30\lib\plat-win
C:\Python30
C:\Python30\lib\site-packages
>>>


C:\Python26>python
Python 2.6rc2 (r26rc2:66507, Sep 18 2008, 14:27:33) [MSC v.1500 32 bit
(Intel)]
on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> import sys
>>> for e in sys.path: print e
...

C:\Python26\python26.zip
C:\Python26\DLLs
C:\Python26\lib
C:\Python26\lib\plat-win
C:\Python26\lib\lib-tk <<<<<<<<<<<<<<<<<<<<<<<<<
C:\Python26
C:\Python26\lib\site-packages
>>>
History
Date User Action Args
2008-09-21 10:09:48jmfauthsetrecipients: + jmfauth
2008-09-21 10:09:48jmfauthsetmessageid: <1221991788.31.0.575741048418.issue3922@psf.upfronthosting.co.za>
2008-09-21 10:09:41jmfauthlinkissue3922 messages
2008-09-21 10:09:40jmfauthcreate