File: //opt/alt/python37/lib/python3.7/site-packages/paste/debug/__pycache__/prints.cpython-37.pyc
B
a�N� � @ sz d Z ddlmZ ddlZddlZddlmZ ddlmZ ddlm Z ddl
Z
dadgZG d d
� d
e
�ZG dd� de
�ZdS )a
Middleware that displays everything that is printed inline in
application pages.
Anything printed during the request will get captured and included on
the page. It will usually be included as a floating element in the
top right hand corner of the page. If you want to override this
you can include a tag in your template where it will be placed::
<pre id="paste-debug-prints"></pre>
You might want to include ``style="white-space: normal"``, as all the
whitespace will be quoted, and this allows the text to wrap if
necessary.
� )�StringION)�
threadedprint)�wsgilib)�responseF�PrintDebugMiddlewarec @ s e Zd Zdd� Zdd� ZdS )�TeeFilec C s
|| _ d S )N)�files)�selfr � r
�C/opt/alt/python37/lib/python3.7/site-packages/paste/debug/prints.py�__init__"