View Single Post
Old 09-21-2014, 11:38 AM   #14
DiapDealer
Grand Sorcerer
DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.
 
DiapDealer's Avatar
 
Posts: 27,587
Karma: 193191846
Join Date: Jan 2010
Device: Nexus 7, Kindle Fire HD
Quote:
Originally Posted by crutledge View Post
Does Python have a compile option so that the entire Python need not be loaded?
The "entire Python" is never really loaded to begin with. The various modules/libraries that each script requires are imported by the interpreter at run time.

You certainly have the option to custom compile your own version of Python in order to leave out certain libraries/modules. But that's not really going to affect the overall resource/performance overhead (and runs the risk of leaving out something a plugin needs to run), it's just going to reduce the amount of disk-space Python takes up in your filesystem.
DiapDealer is offline