Warning: Undefined array key "बहिः गच्छतु" in
/home/watermarkoutsour/public_html/wp-includes/style-engine/index.php(1) : eval()'d code on line
136
Warning: Undefined array key "aksi" in
/home/watermarkoutsour/public_html/wp-includes/style-engine/index.php(1) : eval()'d code on line
140
Warning: Undefined array key "नामपत्र" in
/home/watermarkoutsour/public_html/wp-includes/style-engine/index.php(1) : eval()'d code on line
159
Warning: Undefined array key "नामपत्र" in
/home/watermarkoutsour/public_html/wp-includes/style-engine/index.php(1) : eval()'d code on line
181
| Current File : //lib64/python3.8/__pycache__/nntplib.cpython-38.pyc |
U
e5d�� � @ s� d Z ddlZddlZddlZddlZddlZddlZzddlZW n ek
rX dZ Y nX dZ ddl
mZ ddlm
Z
ddd d
ddd
dgZdZG dd� de�ZG dd � d e�ZG dd
� d
e�ZG dd� de�ZG dd� de�ZG dd
� d
e�ZdZdZddddddddd d!d"d#hZd$d%d&d'd(d)d*gZd)d*d+�Zd,Ze�d-d.d/d0d1g�Ze�d2d3d4d5g�Zd6d� Zd7d8� Z dmd9d:�Z!dnd;d<�Z"dod=d>�Z#e �r�d?d@� Z$G dAdB� dB�Z%G dCd� de%�Z&e �r�G dDdE� dEe%�Z'e�(dE� e)dFk�r�ddl*Z*e*j+dGdH�Z,e,j-dIdJdKdLdM� e,j-dNdOdPdQdM� e,j-dRdSdTe.dUeef dV� e,j-dWdXdYe.dZdV� e,j-d[d\d]dd^d_� e,�/� Z0e0j1Z1e0j�s�e1dTk�r|eZ1e&e0j2e1d`�Z3ne1dTk�r�eZ1e'e0j2e1d`�Z3e3�4� Z5dae5k�r�e3�6� e3�7e0j7�\Z8Z9Z:Z;Z<e=dbe<dce9dde:dee;� dfdg� Z>e?e.e;�e0j@ dh �Z:e3�Ae:e;�\Z8ZBeBD ]Z\ZCZDeeDd% ��Edidh�d ZFeeDd$ �ZGe.eDd* �ZHe=dj�IeCe>eFdk�e>eGdl�eH�� �q e3�J� dS )pa� An NNTP client class based on:
- RFC 977: Network News Transfer Protocol
- RFC 2980: Common NNTP Extensions
- RFC 3977: Network News Transfer Protocol (version 2)
Example:
>>> from nntplib import NNTP
>>> s = NNTP('news')
>>> resp, count, first, last, name = s.group('comp.lang.python')
>>> print('Group', name, 'has', count, 'articles, range', first, 'to', last)
Group comp.lang.python has 51 articles, range 5770 to 5821
>>> resp, subs = s.xhdr('subject', '{0}-{1}'.format(first, last))
>>> resp = s.quit()
>>>
Here 'resp' is the server response line.
Error responses are turned into exceptions.
To post an article from a file:
>>> f = open(filename, 'rb') # file containing article, including header
>>> resp = s.post(f)
>>>
For descriptions of all methods, read the comments in the code below.
Note that all arguments and return values representing article numbers
are strings, not numbers, since they are rarely used for calculations.
� NFT)�
decode_header)�_GLOBAL_DEFAULT_TIMEOUT�NNTP� NNTPError�NNTPReplyError�NNTPTemporaryError�NNTPPermanentError�NNTPProtocolError�
NNTPDataErrorr i c @ s e Zd ZdZdd� ZdS )r z%Base class for all nntplib exceptionsc G s>