Viewing File: /opt/alt/python35/lib64/python3.5/__pycache__/site.cpython-35.pyc



YfT@sdZddlZddlZddlZddlZejejgadada	da
ddZddZddZ
d	d
ZddZdd
dZddZddZddZddZdddZdddZddZddZdd Zd!d"Zd#d$Zd%Zd&d'Zd(d)Zd*d+Zd,d-Z ej!j"sxe d.d/Z#e$d0kre#dS)1adAppend 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<version>/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
<package>.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.

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.
NcGsStjj|}ytjj|}Wntk
r<YnX|tjj|fS)N)ospathjoinabspathOSErrornormcase)pathsdirr
)/opt/alt/python35/lib64/python3.5/site.pymakepathYs
rcCsxttjjD]}tt|dddddkrCqytjj|j|_Wnt	t
fk
ryYnXytjj|j|_Wqt	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
__cached__)mr
r
r	abs_pathsbs	rcCsrg}t}xItjD]>}t|\}}||kr|j||j|qW|tjdd<|S)zK Remove duplicate entries from sys.path along with making them
    absoluteN)rrrrappendadd)Lknown_pathsr	dircaser
r
rremoveduppathsrs	
r cCsnt}x^tjD]S}y5tjj|rMt|\}}|j|Wqtk
rewYqXqW|S)zDReturn a set containing all existing directory entries from sys.path)rrrrisdirrr	TypeError)dr	rr
r
r_init_pathinfos	
r$cCs|dkrt}d}nd}tjj||}yt|d}Wntk
rddSYnX|VxNt|D]@\}}|jdrqyy||jdrt|wy|j	}t
||\}}	|	|krtjj|rtjj
||j|	Wqytk
rtdj|d|d	tjddl}
xK|
jtjD]4}x+|jD]}td
|d	tjq{WqhWtdd	tjPYqyXqyWWdQRX|rd}|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 '.
    Nrr#import import	z"Error processing line {:d} of {}:
filez  z
Remainder of file ignored)r(r))r$rrropenr	enumerate
startswithexecrstriprexistsrrr	Exceptionprintformatstderr	tracebackformat_exceptionexc_info
splitlines)sitedirnamerresetfullnamefnliner	rr5recordr
r
r
addpackagesD		
	


rAc
Cs|dkrt}d}nd}t|\}}||kr_tjj||j|ytj|}Wntk
rdSYnXdd|D}x$t	|D]}t
|||qW|rd}|S)zTAdd 'sitedir' argument to sys.path if missing and handle .pth files in
    'sitedir'Nr%rcSs%g|]}|jdr|qS)z.pth)endswith).0r:r
r
r
<listcomp>s	zaddsitedir.<locals>.<listcomp>)r$rrrrrrlistdirrsortedrA)r9rr;sitedircasenamesr:r
r
r
addsitedirs$		

	rIcCstjjrdSttdrJttdrJtjtjkrJdSttdrttdrtjtjkrdSdS)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_sitehasattrrrKrJrMrLr
r
r
rcheck_enableusersites
rQcCs0tdk	rtSddlm}|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	sysconfigrR)rRr
r
rgetuserbases
rVcCst}tdk	rtSddlm}tjdkrgddlm}|drg|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)rRPYTHONFRAMEWORKpurelibosx_framework_userz%s_user)	rV	USER_SITErUrWrplatformrRrr:)	user_baserWrRr
r
rgetusersitepackagess	r_cCs2t}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.
    )r_ENABLE_USER_SITErrr!rI)r	user_siter
r
raddusersitepackagess	
rbc	Cs|g}t}|dkr!t}xT|D]L}|s(||krDq(|j|tjdkr|jtjj|ddtj	ddd|jtjj|ddtj	dddnK|j||jtjj|dd|jtjj|ddtj
dkr(d	d
lm}|d}|r(|jtjjd|tj	dddq(W|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-packageslibrXr)rRrYz/Library)
rPREFIXESrrseprrrrversionr]rUrR)prefixessitepackagesseenprefixrR	frameworkr
r
rgetsitepackagess4	




rpcCs:x3t|D]%}tjj|r
t||q
W|S)zAdd site-packages to sys.path)rprrr!rI)rrkr9r
r
raddsitepackagesGsrqcCsdtjdkrd}ntjdkr0d}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.

    :zCmd-Q\zCtrl-Z plus ReturnzCtrl-D (i.e. EOF)quitexitN)rri
_sitebuiltinsQuitterbuiltinsrtru)eofr
r
rsetquitOs		rzcCstjdtjt_tjdddkrItjddt_ntjddt_gg}}ttdrtj	j
tj}|jd	d
g|jtj	j
|tj|tjgtjdd||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.rzLICENSE.txtLICENSElicensez'See https://www.python.org/psf/license/)rv_Printerrr{rxr]r~rPrrdirnamerextendrpardircurdirr)filesdirsherer
r
rsetcopyrightas 	
+rcCstjt_dS)N)rv_Helperrxhelpr
r
r
r	sethelperysrcCsdd}|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.
    cSsddl}yddl}ddl}Wntk
r@dSYnXt|dd}|dk	r{d|kr{|jdn
|jdy|jWntk
rYnX|jdkrt	j
jt	j
jdd}y|j
|Wntk
rYnX|j|j|dS)	Nr__doc__libeditzbind ^I rl_completez
tab: complete~z.python_history)atexitreadlinerlcompleterImportErrorrparse_and_bindread_init_filerget_current_history_lengthrrr
expanduserread_history_fileIOErrorregisterwrite_history_file)rrrreadline_dochistoryr
r
rregister_readlines,
	

	
z,enablerlcompleter.<locals>.register_readlineN)r__interactivehook__)rr
r
renablerlcompleter|s	'rcCstjdkrddl}ddl}|jd}|jdry|j|Wn>tk
rddl}|j	|j
|<d|jj|<YnXdS)zOn Windows, some default encodings are not provided by Python,
    while they are always available as "mbcs" in each locale. Make
    them usable by aliasing to "mbcs" in such a case.win32rNFcpmbcs)rr]_bootlocalecodecsgetpreferredencodingr-lookupLookupError	encodings_unknown_cachealiases)rrencrr
r
r	aliasmbcss
rz,^(?P<key>(\w|[-_])+)\s*=\s*(?P<value>.*)\s*$cCstj}tjdkr4d|kr4tjd}n	tj}tjjtjj|\}}tjj|}dt_	d}ddtjj
||tjj
||fD}|rddl}|jt
}	|d}
d}t|
dd	}x|D]}
|
j}
|	j|
}|r|j}|d
j|d}}|dkro|j}q|d
kr|t_	q|dkr|jdkr|}d}qWWdQRX|t_t_t|tjg|dkrtjdtjntjgada|S)NrX__PYVENV_LAUNCHER__z
pyvenv.cfgcSs(g|]}tjj|r|qSr
)rrisfile)rCconffiler
r
rrDs	zvenv.<locals>.<listcomp>rtrueencodingzutf-8keyvaluezinclude-system-site-packageshomeapplocalfalseF)renvironrr]
executablersplitrr_homerrecompileCONFIG_LINEr+stripmatch	groupdictlowerrnexec_prefixrqrhinsertr`)renvrexe_dir_site_prefix
conf_basenamecandidate_confsrconfig_linevirtual_confsystem_siter=r?rr#rrr
r
rvenvsJ		$		

rcCsyddl}Wn~tk
r$Ynmtk
r}zMtjjdr^tjtjn tj	j
d|jj|fWYdd}~XnXdS)z,Run custom site specific code, if available.rN
PYTHONVERBOSEz@Error in sitecustomize; set PYTHONVERBOSE for traceback:
%s: %s
)

sitecustomizerr1rrgetr
excepthookr7r4write	__class____name__)rerrr
r
rexecsitecustomizes
	rcCsyddl}Wn~tk
r$Ynmtk
r}zMtjjdr^tjtjn tj	j
d|jj|fWYdd}~XnXdS)z,Run custom user specific code, if available.rNrz@Error in usercustomize; set PYTHONVERBOSE for traceback:
%s: %s
)

usercustomizerr1rrrrrr7r4rrr)rrr
r
rexecusercustomizes
	rcCstt}t|}tdkr1tat|}t|}ttt	t
tttrt
dS)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 rr`rQrbrqrzrrrrrr)rr
r
rmains		rcCsd}tjdd}|st}t}tdx"tjD]}td|fqEWtdtd|tjj|rdndftd	|tjj|rdndftd
ttj	dg}d|kr|j
td
|kr|j
t|rttj
j|trGtj	dqtdkrctj	dqtdkrtj	dqtj	dn@ddl}t|j|tjdtj
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)r0z
doesn't existzUSER_SITE: %r (%s)zENABLE_USER_SITE: %rrz--user-basez--user-siteFrf
)rargvrVr_r2rrr!r`rurrTr\pathseprtextwrapdedent)rargsr^rar	bufferrr
r
r_script9s@		

	#	#


'r__main__)%rrrrxrvrnrrhr`r\rTrrr r$rArIrQrVr_rbrprqrzrrrrrrrrrrNno_siterrr
r
r
r<module>EsF	
*(2=3
Back to Directory File Manager