| Server IP : 118.27.122.248 / Your IP : 216.73.216.240 Web Server : Apache System : Linux web0264.sh.tyo1 4.18.0-553.79.1.lve.el7h.x86_64 #1 SMP Wed Oct 15 16:34:46 UTC 2025 x86_64 User : c9415830 ( 11735) PHP Version : 8.4.17 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /opt/alt/python36/lib64/python3.6/test/__pycache__/ |
Upload File : |
3
�w2_7 � @ sh d Z ddlZddlZddlmZ ejjdkr6ejd��G dd� de�Z dd � Z
dd
lT edkrde
� dS )u� A module to test whether doctest recognizes some 2.2 features,
like static and class methods.
>>> print('yup') # 1
yup
We include some (random) encoded (utf-8) text in the text surrounding
the example. It should be ignored:
ЉЊЈЁЂ
� N)�support� zCannot test docstrings with -O2c @ sf e Zd ZdZdd� Zdd� ZG dd� de�Zdd � Zd
d� Z e
ee dd
�Zedd� �Z
edd� �ZdS )�Cu� Class C.
>>> print(C()) # 2
42
We include some (random) encoded (utf-8) text in the text surrounding
the example. It should be ignored:
ЉЊЈЁЂ
c C s dS )z;C.__init__.
>>> print(C()) # 3
42
N� )�selfr r �7/opt/alt/python36/lib64/python3.6/test/test_doctest2.py�__init__"