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 pitrou
Recipients eric.araujo, ncoghlan, pitrou, tarek, terry.reedy
Date 2011-10-11.03:02:57
SpamBayes Score 0.0346513
Marked as misclassified No
Message-id <1318302178.08.0.514256961817.issue13150@psf.upfronthosting.co.za>
In-reply-to
Content
sysconfig is imported and used by site.py.

$ time ./python -S -c ''

real	0m0.019s
user	0m0.013s
sys	0m0.005s

$ time ./python -S -c 'import sysconfig'

real	0m0.047s
user	0m0.046s
sys	0m0.002s

$ time ./python -S -c 'import sysconfig; sysconfig.get_path("purelib")'

real	0m0.053s
user	0m0.047s
sys	0m0.005s

$ time ./python -c ''

real	0m0.058s
user	0m0.054s
sys	0m0.003s
History
Date User Action Args
2011-10-11 03:02:58pitrousetrecipients: + pitrou, terry.reedy, ncoghlan, tarek, eric.araujo
2011-10-11 03:02:58pitrousetmessageid: <1318302178.08.0.514256961817.issue13150@psf.upfronthosting.co.za>
2011-10-11 03:02:57pitroulinkissue13150 messages
2011-10-11 03:02:57pitroucreate