Ic @ s. d Z d Z d Z d Z d Z d S( s
This module contains default sysconfig settings.
The command object is inserted into this module as a global variable
``paste_command``, and can be used inside functions.
c C s d S( s
This method can modify the ``parser`` object (which is an
``optparse.OptionParser`` instance). This can be used to add new
options to the command.
N( ( t parser( ( sB /usr/lib/python2.6/site-packages/paste/script/default_sysconfig.pyt add_custom_options
s c C s | i S( sT
This function can return a default filename or directory for the
configuration file, if none was explicitly given.
Return None to mean no preference. The first non-None returning
value will be used.
Pay attention to ``installer.expect_config_directory`` here,
and to ``installer.default_config_filename``.
( t default_config_filename( t installer( ( sB /usr/lib/python2.6/site-packages/paste/script/default_sysconfig.pyR s c C s h S( s
Returns a dictionary of variables for use later in the process
(e.g., filling a configuration file). These are combined from all
sysconfig files.
( ( R ( ( sB /usr/lib/python2.6/site-packages/paste/script/default_sysconfig.pyt install_variables s c C s d S( s|
This is called at the very end of ``paster setup-app``. You
might use it to register an application globally.
N( ( R t config_file( ( sB /usr/lib/python2.6/site-packages/paste/script/default_sysconfig.pyt post_setup_hook' s N( t __doc__R R R R ( ( ( sB /usr/lib/python2.6/site-packages/paste/script/default_sysconfig.pyt