Your IP : 216.73.216.213
��Yf7 � @ s� d Z d d l Z d d l Z d d l m Z e j j d k rO e j d � � Gd d � d e � Z d d � Z
d d
l Te d k r� e
� d S)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 @ s� e Z d Z d Z d d � Z d d � Z Gd d � d e � Z d d � Z d
d � Z e
e e d d
�Z e d d � � Z
e d d � � Z d S)�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 d S)z;C.__init__.
>>> print(C()) # 3
42
N� )�selfr r �7/opt/alt/python35/lib64/python3.5/test/test_doctest2.py�__init__"