📁 File Manager Pro
v10.0.3 | PHP: 8.1.34
Server: Apache
2026-06-21 23:57:52
📂
/ (Root)
/
opt
/
alt
/
python37
/
lib
/
python3.7
/
site-packages
/
nose
/
plugins
/
__pycache__
📍 /opt/alt/python37/lib/python3.7/site-packages/nose/plugins/__pycache__
🔄 Refresh
✏️
Editing: capture.cpython-37.pyc
Read Only
B 0�Se$ � @ sn d Z ddlZddlZddlZddlmZ ddlmZmZ ddl m Z ddlmZ e� e�ZG dd� de�ZdS ) a_ This plugin captures stdout during test execution. If the test fails or raises an error, the captured output will be appended to the error or failure output. It is enabled by default but can be disabled with the options ``-s`` or ``--nocapture``. :Options: ``--nocapture`` Don't capture stdout (any stdout output will be printed immediately) � N)�Plugin)�exc_to_unicode� force_unicode)�ln)�StringIOc @ s� e Zd ZdZdZdZdZdZdd� Zdd � Z d d� Z dd � Zdd� Zdd� Z dd� Zdd� Zdd� Zdd� Zdd� Zdd� Zdd� Zeed d d!�Zd S )"�Capturea Output capture plugin. Enabled by default. Disable with ``-s`` or ``--nocapture``. This plugin captures stdout during test execution, appending any output captured to the error or failure output, should the test fail or raise an error. TZNOSE_NOCAPTURE�capturei@ c C s g | _ d | _d S )N)�stdout�_buf)�self� r �E/opt/alt/python37/lib/python3.7/site-packages/nose/plugins/capture.py�__init__# s zCapture.__init__c C s$ |j ddd|�| j� ddd� dS )z%Register commandline options z-sz--nocapture�store_falser zUDon't capture stdout (any stdout output will be printed immediately) [NOSE_NOCAPTURE])�action�default�dest�helpN)� add_option�get�env_opt)r �parser�envr r r �options'