|
Server : LiteSpeed System : Linux server51.dnsbootclub.com 4.18.0-553.62.1.lve.el8.x86_64 #1 SMP Mon Jul 21 17:50:35 UTC 2025 x86_64 User : nandedex ( 1060) PHP Version : 8.1.33 Disable Function : NONE Directory : /opt/cppython/lib/python3.8/test/__pycache__/ |
U
>��g7 � @ sh d Z ddlZddlZddlmZ ejjdkr6e�d��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 �1/opt/cppython/lib/python3.8/test/test_doctest2.py�__init__"