3 $fS@s dZddlZddlZddlZddlZejejgadada da ddZ ddZ ddZ d d Zd d Zd.d dZddZddZddZddZd/ddZd0ddZddZddZdd Zd!d"Zd#d$Zd%d&Zd'd(Zd)d*Zejj sed+d,Z!e"d-kre!dS)1a Append module search paths for third-party packages to sys.path. **************************************************************** * This module is automatically imported during initialization. * **************************************************************** This will append site-specific paths to the module search path. On Unix (including Mac OSX), it starts with sys.prefix and sys.exec_prefix (if different) and appends lib/python/site-packages. On other platforms (such as Windows), it tries each of the prefixes directly, as well as with lib/site-packages appended. The resulting directories, if they exist, are appended to sys.path, and also inspected for path configuration files. If a file named "pyvenv.cfg" exists one directory above sys.executable, sys.prefix and sys.exec_prefix are set to that directory and it is also checked for site-packages (sys.base_prefix and sys.base_exec_prefix will always be the "real" prefixes of the Python installation). If "pyvenv.cfg" (a bootstrap configuration file) contains the key "include-system-site-packages" set to anything other than "false" (case-insensitive), the system-level prefixes will still also be searched for site-packages; otherwise they won't. All of the resulting site-specific directories, if they exist, are appended to sys.path, and also inspected for path configuration files. A path configuration file is a file whose name has the form .pth; its contents are additional directories (one per line) to be added to sys.path. Non-existing directories (or non-directories) are never added to sys.path; no directory is added to sys.path more than once. Blank lines and lines beginning with '#' are skipped. Lines starting with 'import' are executed. For example, suppose sys.prefix and sys.exec_prefix are set to /usr/local and there is a directory /usr/local/lib/python2.5/site-packages with three subdirectories, foo, bar and spam, and two path configuration files, foo.pth and bar.pth. Assume foo.pth contains the following: # foo package configuration foo bar bletch and bar.pth contains: # bar package configuration bar Then the following directories are added to sys.path, in this order: /usr/local/lib/python2.5/site-packages/bar /usr/local/lib/python2.5/site-packages/foo Note that bletch is omitted because it doesn't exist; bar precedes foo because bar.pth comes alphabetically before foo.pth; and spam is omitted because it is not mentioned in either path configuration file. The readline module is also automatically configured to enable completion for systems that support it. This can be overridden in sitecustomize, usercustomize or PYTHONSTARTUP. Starting Python in isolated mode (-I) disables automatic readline configuration. After these operations, an attempt is made to import a module named sitecustomize, which can perform arbitrary additional site-specific customizations. If this import fails with an ImportError exception, it is silently ignored. Nc GsBtjj|}ytjj|}Wntk r0YnX|tjj|fS)N)ospathjoinabspathOSErrornormcase)pathsdirr /usr/lib64/python3.6/site.pymakepathZs  r cCsxttjjD]~}tt|dddddkr.qytjj|j|_Wnt t t fk r\YnXytjj|j |_ Wqt t t fk rYqXqWdS)zESet all module __file__ and __cached__ attributes to an absolute path __loader__N __module___frozen_importlib_frozen_importlib_external)rr) setsysmodulesvaluesgetattrrrr__file__AttributeErrorr TypeError __cached__)mr r r abs_pathscsrcCsTg}t}x6tjD],}t|\}}||kr|j||j|qW|tjdd<|S)zK Remove duplicate entries from sys.path along with making them absoluteN)rrrr appendadd)L known_pathsr dircaser r r removeduppathsss   r!c CsXt}xLtjD]B}y&tjj|r6t|\}}|j|Wqtk rNwYqXqW|S)zEReturn a set containing all existing file system items from sys.path.)rrrrexistsr rr)ditem_itemcaser r r _init_pathinfos    r'c Csp|dkrt}d}nd}tjj||}yt|d}Wntk rHdSX| xt|D]\}}|jdrrq^yX|jdrt|w^|j }t ||\}} | |krtjj |rt jj ||j| Wq^tk rRtdj|d |t jd d dl} x>| jt jD],} x$| jD]}td |t jd qWqWtd t jd PYq^Xq^WWdQRX|rld}|S)zProcess a .pth file within the site-packages directory: For each line in the file, either combine it with sitedir to a path and add that to known_paths, or execute it if it starts with 'import '. NTFr#import import z"Error processing line {:d} of {}: )filerz z Remainder of file ignored)r*r+)r'rrropenr enumerate startswithexecrstripr r"rrr Exceptionprintformatstderr tracebackformat_exceptionexc_info splitlines) sitedirnamerresetfullnamefnliner r r7recordr r r addpackagesD    rCc Cs|dkrt}d}nd}t|\}}||krBtjj||j|ytj|}Wntk rddSXdd|D}xt |D]}t |||q~W|rd}|S)zTAdd 'sitedir' argument to sys.path if missing and handle .pth files in 'sitedir'NTFcSsg|]}|jdr|qS)z.pth)endswith).0r<r r r szaddsitedir..) r'r rrrrrlistdirrsortedrC)r;rr= sitedircasenamesr<r r r addsitedirs$   rKcCs`tjjr dSttdr4ttdr4tjtjkr4dSttdr\ttdr\tjtjkr\dSdS)a,Check if user site directory is safe for inclusion The function tests for the command line flag (including environment var), process uid/gid equal to effective uid/gid. None: Disabled for security reasons False: Disabled by user (command line option) True: Safe and enabled FgetuidgeteuidNgetgidgetegidT) rflags no_user_sitehasattrrrMrLrOrNr r r r check_enableusersites rScCs$tdk r tSddlm}|datS)zReturns the `user base` directory path. The `user base` directory can be used to store data. If the global variable ``USER_BASE`` is not initialized yet, this function will also set it. Nr)get_config_varuserbase) USER_BASE sysconfigrT)rTr r r getuserbases  rXcCs^t}tdk rtSddlm}tjdkrJddlm}|drJ|ddatS|dd tjatS) zReturns the user-specific site-packages directory path. If the global variable ``USER_SITE`` is not initialized yet, this function will also set it. Nr)get_pathdarwin)rTPYTHONFRAMEWORKpurelibosx_framework_userz%s_user) rX USER_SITErWrYrplatformrTrr<) user_baserYrTr r r getusersitepackagess    racCs$t}tr tjj|r t|||S)zAdd a per user site-package to sys.path Each user has its own python directory with site-packages in the home directory. )raENABLE_USER_SITErrisdirrK)r user_siter r r addusersitepackagess rec Csg}t}|dkrt}x|D]}| s||kr2q|j|tjdkr|jtjj|ddtj ddd|jtjj|ddtj dd dn6|j||jtjj|dd|jtjj|ddtj d krd d l m }|d }|r|jtjjd|dtj dd dqW|S)aReturns a list containing all global site-packages directories. For each directory present in ``prefixes`` (or the global ``PREFIXES``), this function will find its `site-packages` subdirectory depending on the system environment, and will return a list of full paths. N/lib64pythonz site-packageslibz python%d.%drZr)rTr[z/Libraryz%d.%d)rPREFIXESrrseprrrrversion version_infor_rWrT)prefixes sitepackagesseenprefixrT frameworkr r r getsitepackages s4        rucCsFtrdtjkrtjddx&t|D]}tjj|r$t||q$W|S)zAdd site-packages to sys.path '/usr/local' is included in PREFIXES if RPM build is not detected to make packages installed into this location visible. RPM_BUILD_ROOTrz /usr/local) rbrenvironrlinsertrurrcrK)rrpr;r r r addsitepackagesHs   rycCs4tjdkrd}nd}tjd|t_tjd|t_dS)zDefine new builtins 'quit' and 'exit'. These are objects which make the interpreter exit when called. The repr of each object contains a hint at how it works. \zCtrl-Z plus ReturnzCtrl-D (i.e. EOF)quitexitN)rrm _sitebuiltinsQuitterbuiltinsr{r|)eofr r r setquitWs  rcCstjdtjt_tjdddkr2tjddt_ntjddt_gg}}ttdrtj j tj }|j d d g|j tj j |tj|tjgtjd d ||t_dS) z)Set 'copyright' and 'credits' in builtins copyrightNjavacreditsz?Jython is maintained by the Jython developers (www.jython.org).z Thanks to CWI, CNRI, BeOpen.com, Zope Corporation and a cast of thousands for supporting Python development. See www.python.org for more information.rz LICENSE.txtLICENSElicensez'See https://www.python.org/psf/license/)r}_Printerrrrr_rrRrrdirnamerextendrpardircurdirr)filesdirsherer r r setcopyrightgs    rcCstjt_dS)N)r}_Helperrhelpr r r r sethelpersrcCsdd}|t_dS)ajEnable default readline configuration on interactive prompts, by registering a sys.__interactivehook__. If the readline module can be imported, the hook will set the Tab key as completion key and register ~/.python_history as history file. This can be overridden in the sitecustomize or usercustomize module, or in a PYTHONSTARTUP file. csddl}yddlddl}Wntk r0dSXtdd}|dk rZd|krZjdn jdy jWntk rYnXjdkrt j j t j j ddyj Wntk rYnXfd d }|j|dS) Nr__doc__libeditzbind ^I rl_completez tab: complete~z.python_historyc s,yjWnttfk r&YnXdS)N)write_history_fileFileNotFoundErrorPermissionErrorr )historyreadliner r write_historyszCenablerlcompleter..register_readline..write_history)atexitr rlcompleter ImportErrorrparse_and_bindread_init_filerget_current_history_lengthrrr expanduserread_history_fileIOErrorregister)rr readline_docrr )rrr register_readlines.      z,enablerlcompleter..register_readlineN)r__interactivehook__)rr r r enablerlcompleters 0rc CsFtj}tjdkr$d|kr$tjd}ntj}tjjtjj|\}}tjj|}dt_ d}ddtjj ||tjj ||fD}|rB|d}d} t |dd `} xX| D]P} d | kr| j d \} }} | j j} | j } | d kr| j} q| d kr| t_ qWWdQRX|t_t_t|tjg| dkr6tjdtjn tjgad a|S)NrZ__PYVENV_LAUNCHER__z pyvenv.cfgcSsg|]}tjj|r|qSr )rrisfile)rEconffiler r r rFszvenv..rtruezutf-8)encoding=zinclude-system-site-packageshomeF)rrwrr_ executablersplitrr_homerr. partitionstriplowerrs exec_prefixryrlrxrb)renvrexe_dirr% site_prefix conf_basenamecandidate_confs virtual_conf system_siter?rAkeyvaluer r r venvs>        rcCsyBy ddl}Wn0tk r>}z|jdkr,nWYdd}~XnXWnRtk r}z6tjjrltjtjntj j d|j j |fWYdd}~XnXdS)z,Run custom site specific code, if available.rN sitecustomizez@Error in sitecustomize; set PYTHONVERBOSE for traceback: %s: %s ) rrr<r3rrPverbose excepthookr9r6write __class____name__)rexcerrr r r execsitecustomizes  rcCsyBy ddl}Wn0tk r>}z|jdkr,nWYdd}~XnXWnRtk r}z6tjjrltjtjntj j d|j j |fWYdd}~XnXdS)z,Run custom user specific code, if available.rN usercustomizez@Error in usercustomize; set PYTHONVERBOSE for traceback: %s: %s ) rrr<r3rrPrrr9r6rrr)rrrr r r execusercustomizes  rcCsftt}t|}tdkr"tat|}t|}ttt t j j sRt ttrbtdS)zAdd standard site-specific directories to the module search path. This function is called automatically when this module is imported, unless the python interpreter was started with the -S flag. N)rr!rrbrSreryrrrrrPisolatedrrr)rr r r mainsrcCs`d}tjdd}|st}t}tdxtjD]}td|fq2Wtdtd|tjj|rfdndftd |tjj|rdndftd ttj d g}d |kr|j t d |kr|j t |r,ttj j|trtj d n6tdkr tj dn tdkr tj dn tj dn0d dl}t|j|tjd tj ftj ddS)Na %s [--user-base] [--user-site] Without arguments print some useful information With arguments print the value of USER_BASE and/or USER_SITE separated by '%s'. Exit codes with --user-base or --user-site: 0 - user site directory is enabled 1 - user site directory is disabled by user 2 - uses site directory is disabled by super user or for security reasons >2 - unknown error r,z sys.path = [z %r,]zUSER_BASE: %r (%s)r"z doesn't existzUSER_SITE: %r (%s)zENABLE_USER_SITE: %rrz --user-basez --user-siteFrkri )rargvrXrar4rrrcrbr|rrVr^pathseprtextwrapdedent)rargsr`rdr bufferrr r r _script6s@           r__main__)N)N)N)#rrrrr}rsrrlrbr^rVr rr!r'rCrKrSrXrareruryrrrrrrrrrPno_siterrr r r r FsB   *  ( ;43