Psyduck - 可達鴨 之 鴨力山大2


Server : LiteSpeed
System : Linux premium217.web-hosting.com 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64
User : alloknri ( 880)
PHP Version : 8.1.34
Disable Function : NONE
Directory :  /opt/alt/python39/lib64/python3.9/__pycache__/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : //opt/alt/python39/lib64/python3.9/__pycache__/nntplib.cpython-39.pyc
a

XC?h?��	@s>dZddlZddlZddlZddlZddlZzddlZWneyNdZYn0dZddl	m
ZddlmZgd�Z
dZGd	d
�d
e�ZGdd�de�ZGd
d�de�ZGdd�de�ZGdd�de�ZGdd�de�ZdZdZhd�Zgd�Zddd�ZdZe�dgd��Ze�dgd ��Zd!d"�Z
d#d$�ZdZd%d&�Z d[d'd(�Z!d\d)d*�Z"e�rZd+d,�Z#Gd-d.�d.�Z$e�r�Gd/d0�d0e$�Z%e
�&d0�e'd1k�r:ddl(Z(e(j)d2d3�Z*e*j+d4d5d6d7d8�e*j+d9d:d;d<d8�e*j+d=d>d?e,d@eefdA�e*j+dBdCdDe,dEdA�e*j+dFdGdHddIdJ�e*�-�Z.e.j/Z/e.j�sBe/d?k�r2eZ/e$e.j0e/dK�Z1ne/d?k�rPeZ/e%e.j0e/dK�Z1e1�2�Z3dLe3v�rxe1�4�e1�5e.j5�\Z6Z7Z8Z9Z:e;dMe:dNe7dOe8dPe9�dQdR�Z<e=e,e9�e.j>dS�Z8e1�?e8e9�\Z6Z@e@D]Z\ZAZBe
eBdT��CdUdS�dZDe
eBdV�ZEe,eBd�ZFe;dW�GeAe<eDdX�e<eEdY�eF���q�e1�H�dS)]a�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�
NNTPDataErrorric@seZdZdZdd�ZdS)rz%Base class for all nntplib exceptionscGs>tj|g|�R�z|d|_Wnty8d|_Yn0dS)NrzNo response given)�	Exception�__init__�response�
IndexError)�self�args�r�,/opt/alt/python39/lib64/python3.9/nntplib.pyrbs
zNNTPError.__init__N)�__name__�
__module__�__qualname__�__doc__rrrrrr`src@seZdZdZdS)rzUnexpected [123]xx replyN�rrrrrrrrrisrc@seZdZdZdS)rz
4xx errorsNrrrrrrmsrc@seZdZdZdS)rz
5xx errorsNrrrrrrqsrc@seZdZdZdS)r	z"Response does not begin with [1-5]Nrrrrrr	usr	c@seZdZdZdS)r
zError in response dataNrrrrrr
ysr
�wi3>Z282Z230�215Z100Z101Z225Z231Z221�211Z222Z220Z224)�subject�from�datez
message-idZ
references�:bytes�:linesrr)�bytes�lines�
�	GroupInfo)�group�last�first�flag�ArticleInfo)Znumber�
message_idr!cCsJg}t|�D]2\}}t|t�r4|�|�|p,d��q|�|�qd�|�S)zvTakes a unicode string representing a munged header value
    and decodes it as a (possibly non-ASCII) readable value.�ascii�)�_email_decode_header�
isinstancer �append�decode�join)Z
header_str�parts�v�encrrrr�s
rcCs�g}|D]`}|ddkr:|dd��d�\}}}d|}n|�d�\}}}|��}t�||�}|�|�qt}t|�t|�kr�td��|dt|��|kr�td��|S)z�Parse a list of string representing the response to LIST OVERVIEW.FMT
    and return a list of header/metadata names.
    Raises NNTPDataError if the response is not compliant
    (cf. RFC 3977, section 8.4).r�:�Nz$LIST OVERVIEW.FMT response too shortz*LIST OVERVIEW.FMT redefines default fields)�	partition�lower�_OVERVIEW_FMT_ALTERNATIVES�getr.�_DEFAULT_OVERVIEW_FMT�lenr
)r!�fmt�line�name�_�suffix�defaultsrrr�_parse_overview_fmt�s
rBcCs�tt�}g}|D]�}i}|�d�^}}t|�}t|�D]�\}	}
|	t|�krLq6||	}|�d�}|	|kr�|s�|d}
|
r�|
dt|
����|
kr�td��|
r�|
t|
�d�nd}
|
|||	<q6|�||f�q|S)zZParse the response to an OVER or XOVER command according to the
    overview format `fmt`.�	r4z: Nz?OVER/XOVER response doesn't include names of additional headers)	r;r:�split�int�	enumerate�
startswithr7r
r.)r!r<Zdata_process_funcZ
n_defaultsZoverviewr=�fieldsZarticle_number�tokens�i�token�
field_nameZis_metadata�hrrr�_parse_overview�s&
rNcCs�|dur |dd�}|dd�}t|dd��}t|dd��}t|dd��}t|dd��}t|dd��}t|dd��}|dkr�|d7}n|d	kr�|d
7}t�||||||�S)z�Parse a pair of (date, time) strings, and return a datetime object.
    If only the date is given, it is assumed to be date and time
    concatenated together (e.g. response to the DATE command).
    Ni�������������Fi��dil)rE�datetime)�date_str�time_strZhoursZminutesZseconds�yearZmonthZdayrrr�_parse_datetime�s
rYcCsPt|tj�sd}n
d�|�}|j}|r<|d}d�||�}nd�||�}||fS)aPFormat a date or datetime object as a pair of (date, time) strings
    in the format required by the NEWNEWS and NEWGROUPS commands.  If a
    date object is passed, the time is assumed to be midnight (00h00).

    The returned representation depends on the legacy flag:
    * if legacy is False (the default):
      date has the YYYYMMDD format and time the HHMMSS format
    * if legacy is True:
      date has the YYMMDD format and time the HHMMSS format.
    RFC 3977 compliant servers should understand both formats; therefore,
    legacy is only needed when talking to old servers.
    Z000000z({0.hour:02d}{0.minute:02d}{0.second:02d}rTz{0:02d}{1.month:02d}{1.day:02d}z{0:04d}{1.month:02d}{1.day:02d})r-rU�formatrX)ZdtZlegacyrW�yrVrrr�_unparse_datetime�s

r\cCs|durt��}|j||d�S)z�Wrap a socket in SSL/TLS. Arguments:
        - sock: Socket to wrap
        - context: SSL context to use for the encrypted connection
        Returns:
        - sock: New, encrypted socket.
        N)Zserver_hostname)�sslZ_create_stdlib_contextZwrap_socket)�sock�contextZhostnamerrr�_encrypt_onsr`c@seZdZdZdZeddddefdd�Zdd�Zd	d
�Z	dd�Z
d
d�Zdd�Zdd�Z
dd�ZeZdd�Zdd�Zdidd�Zdd�Zdjdd�Zd d!�Zdkd"d#�Zdld$d%�Zd&d'�Zd(d)�Zd*d+�Zdd,�d-d.�Zdd,�d/d0�Zdmdd,�d1d2�Zd3d4�Zd5d6�Zd7d8�Z d9d:�Z!dd,�d;d<�Z"d=d>�Z#d?d@�Z$dndAdB�Z%dCdD�Z&dEdF�Z'dodGdH�Z(dpdd,�dIdJ�Z)dqdd,�dKdL�Z*drdd,�dMdN�Z+dOdP�Z,dd,�dQdR�Z-dd,�dSdT�Z.dd,�dUdV�Z/dWdX�Z0dYdZ�Z1d[d\�Z2d]d^�Z3d_d`�Z4dadb�Z5dsdcdd�Z6dedf�Z7e8�rdtdgdh�Z9dS)urzutf-8�surrogateescapeNFcCs~||_||_|�|�|_d|_z2|j�d�|_|�|�|s@|rN|�|||�Wn(|jrh|j��|j���Yn0dS)a,Initialize an instance.  Arguments:
        - host: hostname to connect to
        - port: port to connect to (default the standard NNTP port)
        - user: username to authenticate with
        - password: password to use with username
        - readermode: if true, send 'mode reader' command after
                      connecting.
        - usenetrc: allow loading username and password from ~/.netrc file
                    if not specified explicitly
        - timeout: timeout (in seconds) used for socket connections

        readermode is sometimes necessary if you are connecting to an
        NNTP server on the local machine and intend to call
        reader-specific commands, such as `group'.  If you get
        unexpected NNTPPermanentErrors, you might need to set
        readermode.
        N�rwb)	�host�port�_create_socketr^�file�makefile�
_base_init�login�close)rrcrd�user�password�
readermode�usenetrc�timeoutrrrr8s


z
NNTP.__init__cCs^d|_|��|_d|_|��d|_|rNd|jvrN|��|jsNd|_|��d|_d|_dS)z~Partial initialization for the NNTP protocol.
        This instance method is extracted for supporting the test code.
        rNF�READER)	�	debugging�_getresp�welcome�_caps�getcapabilities�readermode_afterauth�_setreadermode�tls_on�
authenticated)rrmrrrrh[s
	zNNTP._base_initcCs|S�Nr�rrrr�	__enter__}szNNTP.__enter__c	s^�fdd�}|�rZz6z���Wnttfy6Yn0W|�rZ���n|�rX���0dS)Ncs
t�d�S)Nrf)�hasattrrr{rr�<lambda>��zNNTP.__exit__.<locals>.<lambda>)�quit�OSError�EOFError�_close)rrZis_connectedrr{r�__exit__�s
�z
NNTP.__exit__cCs<|dur|std��t�d||j|j�t�|j|jf|�S)Nz0Non-blocking socket (timeout=0) is not supportedznntplib.connect)�
ValueError�sys�auditrcrd�socketZcreate_connection)rrorrrre�szNNTP._create_socketcCs|jrtdt|j��|jS)z�Get the welcome message from the server
        (this is read and squirreled away by __init__()).
        If the response code is 200, posting is allowed;
        if it 201, posting is not allowed.z	*welcome*)rq�print�reprrsr{rrr�
getwelcome�szNNTP.getwelcomec	Cs�|jdur~d|_d|_z|��\}}WnttfyBi|_Yn<0||_d|vrfttt|d��|_d|vr~d�	|d�|_|jS)z�Get the server capabilities, as read by __init__().
        If the CAPABILITIES command is not supported, an empty dict is
        returned.Nr5ZVERSIONZIMPLEMENTATION� )
rt�nntp_versionZnntp_implementation�capabilitiesrr�max�maprEr0)r�resp�capsrrrru�s
zNNTP.getcapabilitiescCs
||_dS)z�Set the debugging level.  Argument 'level' means:
        0: no debugging output (default)
        1: print commands and responses but not body text etc.
        2: also print raw lines read and sent before stripping CR/LFN)rq)r�levelrrr�set_debuglevel�szNNTP.set_debuglevelcCsHt�d||�|t}|jdkr.tdt|��|j�|�|j��dS)zfInternal: send one line to the server, appending CRLF.
        The `line` must be a bytes-like object.znntplib.putliner5z*put*N)	r�r��_CRLFrqr�r�rf�write�flush�rr=rrr�_putline�s
z
NNTP._putlinecCs2|jrtdt|��|�|j|j�}|�|�dS)zkInternal: send one command to the server (through _putline()).
        The `line` must be a unicode string.z*cmd*N)rqr�r��encode�encoding�errorsr�r�rrr�_putcmd�szNNTP._putcmdTcCs�|j�td�}t|�tkr$td��|jdkr<tdt|��|sDt�|r�|dd�t	krf|dd�}n|dd�t	vr�|dd�}|S)z�Internal: return one line from the server, stripping _CRLF.
        Raise EOFError if the connection is closed.
        Returns a bytes object.r5z
line too longz*get*rRN���)
rf�readline�_MAXLINEr;r
rqr�r�r�r�)rZ
strip_crlfr=rrr�_getline�s
z
NNTP._getlinecCsl|��}|jrtdt|��|�|j|j�}|dd�}|dkrHt|��|dkrXt|��|dvrht	|��|S)z�Internal: get a response from the server.
        Raise various errors if the response indicates an error.
        Returns a unicode string.z*resp*Nr5�4�5Z123)
r�rqr�r�r/r�r�rrr	)rr��crrrrr�sz
NNTP._getrespcCs�d}z�t|ttf�r"t|d�}}|��}|dd�tvrBt|��g}|dur�dtdf}|�d�}||vrnq�|�	d�r�|dd�}|�
|�qZn8d}|��}||kr�q�|�	d�r�|dd�}|�|�q�W|r�|��n|r�|��0||fS)	aPInternal: get a response plus following text from the server.
        Raise various errors if the response indicates an error.

        Returns a (response, lines) tuple where `response` is a unicode
        string and `lines` is a list of bytes objects.
        If `file` is a file-like object, it must be open in binary mode.
        N�wb��.s.
Fs..r5)
r-�strr �openrr�	_LONGRESPrr�r�rGr�r.rj)rrfZ
openedFiler�r!Zterminatorsr=�
terminatorrrr�_getlongresp�s8	



�
zNNTP._getlongrespcCs|�|�|��S)zWInternal: send a command and get the response.
        Same return value as _getresp().)r�rrr�rrr�	_shortcmds
zNNTP._shortcmdcCs|�|�|�|�S)zoInternal: send a command and get the response plus following text.
        Same return value as _getlongresp().�r�r�)rr=rfrrr�_longcmds
z
NNTP._longcmdcs.��|���|�\}}|�fdd�|D�fS)z�Internal: send a command and get the response plus following text.
        Same as _longcmd() and _getlongresp(), except that the returned `lines`
        are unicode strings rather than bytes objects.
        csg|]}|��j�j��qSr)r/r�r���.0r=r{rr�
<listcomp>+s�z'NNTP._longcmdstring.<locals>.<listcomp>r�)rr=rfr��listrr{r�_longcmdstring$s

�zNNTP._longcmdstringcCs`z|jWStyYn0z|�d�\}}WntyLtdd�}Yn
0t|�}||_|S)zqInternal: get the overview format. Queries the server if not
        already done, else returns the cached value.zLIST OVERVIEW.FMTN)Z_cachedoverviewfmt�AttributeErrorr�rr:rB)rr�r!r<rrr�_getoverviewfmt.szNNTP._getoverviewfmtcCsdd�|D�S)NcSsg|]}t|����qSr)r#rDr�rrrr�Arz#NNTP._grouplist.<locals>.<listcomp>r)rr!rrr�
_grouplist?szNNTP._grouplistcCs8i}|�d�\}}|D]}|��^}}|||<q||fS)a!Process a CAPABILITIES command.  Not supported by all servers.
        Return:
        - resp: server response if successful
        - caps: a dictionary mapping capability names to lists of tokens
        (for example {'VERSION': ['2'], 'OVER': [], LIST: ['ACTIVE', 'HEADERS'] })
        ZCAPABILITIES)r�rD)rr�r�r!r=r>rIrrrr�Cs
zNNTP.capabilities)rfcCsbt|tjtjf�s$td�|jj���t||jdk�\}}d�||�}|�	||�\}}||�
|�fS)z�Process a NEWGROUPS command.  Arguments:
        - date: a date or datetime object
        Return:
        - resp: server response if successful
        - list: list of newsgroup names
        �Athe date parameter must be a date or datetime object, not '{:40}'rOzNEWGROUPS {0} {1})r-rUr�	TypeErrorrZ�	__class__rr\r�r�r�)rrrfrVrW�cmdr�r!rrr�	newgroupsQs��zNNTP.newgroupscCsRt|tjtjf�s$td�|jj���t||jdk�\}}d�|||�}|�	||�S)z�Process a NEWNEWS command.  Arguments:
        - group: group name or '*'
        - date: a date or datetime object
        Return:
        - resp: server response if successful
        - list: list of message ids
        r�rOzNEWNEWS {0} {1} {2})
r-rUrr�rZr�rr\r�r�)rr$rrfrVrWr�rrr�newnewsas��zNNTP.newnewscCs4|durd|}nd}|�||�\}}||�|�fS)a@Process a LIST or LIST ACTIVE command. Arguments:
        - group_pattern: a pattern indicating which groups to query
        - file: Filename string or file object to store the result in
        Returns:
        - resp: server response if successful
        - list: list of (group, last, first, flag) (strings)
        NzLIST ACTIVE ZLIST)r�r�)r�
group_patternrf�commandr�r!rrrr�qs

z	NNTP.listcCs�t�d�}|�d|�\}}|�d�s8|�d|�\}}i}|D]:}|�|���}|r@|�dd�\}	}
|sr|
S|
||	<q@|r�||fSdSdS)Nz^(?P<group>[^ 	]+)[ 	]+(.*)$zLIST NEWSGROUPS rzXGTITLE r5rOr+)�re�compiler�rG�search�stripr$)rr�Z
return_allZline_patr�r!�groupsZraw_line�matchr>Zdescrrr�_getdescriptions�s


zNNTP._getdescriptionscCs|�|d�S)a�Get a description for a single group.  If more than one
        group matches ('group' is a pattern), return the first.  If no
        group matches, return an empty string.

        This elides the response code from the server, since it can
        only be '215' or '285' (for xgtitle) anyway.  If the response
        code is needed, use the 'descriptions' method.

        NOTE: This neither checks for a wildcard in 'group' nor does
        it check whether the group actually exists.F�r�)rr$rrr�description�szNNTP.descriptioncCs|�|d�S)z'Get descriptions for a range of groups.Tr�)rr�rrr�descriptions�szNNTP.descriptionscCs�|�d|�}|�d�s t|��|��}d}}}t|�}|dkr�|d}|dkr�|d}|dkr�|d}|dkr�|d��}|t|�t|�t|�|fS)aProcess a GROUP command.  Argument:
        - group: the group name
        Returns:
        - resp: server response if successful
        - count: number of articles
        - first: first article number
        - last: last article number
        - name: the group name
        zGROUP rrr5rOr�rP)r�rGrrDr;r7rE)rr>r��words�countr&r%�nrrrr$�s

z
NNTP.groupcCs|�d|�S)aProcess a HELP command. Argument:
        - file: Filename string or file object to store the result in
        Returns:
        - resp: server response if successful
        - list: list of strings returned by the server in response to the
                HELP command
        ZHELP)r�)rrfrrr�help�sz	NNTP.helpcCs8|�d�st|��|��}t|d�}|d}|||fS)z_Internal: parse the response line of a STAT, NEXT, LAST,
        ARTICLE, HEAD or BODY command.Z22r5rO)rGrrDrE)rr�r��art_numr)rrr�
_statparse�s
zNNTP._statparsecCs|�|�}|�|�S)z/Internal: process a STAT, NEXT or LAST command.)r�r�)rr=r�rrr�_statcmd�s
z
NNTP._statcmdcCs"|r|�d�|��S|�d�SdS)a(Process a STAT command.  Argument:
        - message_spec: article number or message id (if not specified,
          the current article is selected)
        Returns:
        - resp: server response if successful
        - art_num: the article number
        - message_id: the message id
        zSTAT {0}ZSTATN)r�rZ)r�message_specrrr�stat�s	z	NNTP.statcCs
|�d�S)z;Process a NEXT command.  No arguments.  Return as for STAT.ZNEXT�r�r{rrr�next�sz	NNTP.nextcCs
|�d�S)z;Process a LAST command.  No arguments.  Return as for STAT.ZLASTr�r{rrrr%�sz	NNTP.lastcCs0|�||�\}}|�|�\}}}|t|||�fS)z2Internal: process a HEAD, BODY or ARTICLE command.)r�r�r()rr=rfr�r!r�r)rrr�_artcmd�szNNTP._artcmdcCs$|durd�|�}nd}|�||�S)a0Process a HEAD command.  Argument:
        - message_spec: article number or message id
        - file: filename string or file object to store the headers in
        Returns:
        - resp: server response if successful
        - ArticleInfo: (article number, message id, list of header lines)
        NzHEAD {0}ZHEAD�rZr��rr�rfr�rrr�head�sz	NNTP.headcCs$|durd�|�}nd}|�||�S)a+Process a BODY command.  Argument:
        - message_spec: article number or message id
        - file: filename string or file object to store the body in
        Returns:
        - resp: server response if successful
        - ArticleInfo: (article number, message id, list of body lines)
        NzBODY {0}ZBODYr�r�rrr�bodysz	NNTP.bodycCs$|durd�|�}nd}|�||�S)a5Process an ARTICLE command.  Argument:
        - message_spec: article number or message id
        - file: filename string or file object to store the article in
        Returns:
        - resp: server response if successful
        - ArticleInfo: (article number, message id, list of article lines)
        NzARTICLE {0}ZARTICLEr�r�rrr�articleszNNTP.articlecCs
|�d�S)zYProcess a SLAVE command.  Returns:
        - resp: server response if successful
        ZSLAVE)r�r{rrr�slave!sz
NNTP.slavecsDt�d��|�d�||�|�\}}�fdd��|�fdd�|D�fS)aiProcess an XHDR command (optional server extension).  Arguments:
        - hdr: the header type (e.g. 'subject')
        - str: an article nr, a message id, or a range nr1-nr2
        - file: Filename string or file object to store the result in
        Returns:
        - resp: server response if successful
        - list: list of (nr, value) strings
        z^([0-9]+) ?(.*)
?zXHDR {0} {1}cs��|�}|r|�dd�S|S)Nr5rO)r�r$)r=�m)�patrr�
remove_number2s
z NNTP.xhdr.<locals>.remove_numbercsg|]}�|��qSrrr�)r�rrr�5rzNNTP.xhdr.<locals>.<listcomp>)r�r�r�rZ)rZhdrr�rfr�r!r)r�r�r�xhdr's	
z	NNTP.xhdrcCs.|�d�||�|�\}}|��}|t||�fS)aFProcess an XOVER command (optional server extension) Arguments:
        - start: start of range
        - end: end of range
        - file: Filename string or file object to store the result in
        Returns:
        - resp: server response if successful
        - list: list of dicts containing the response fields
        z
XOVER {0}-{1})r�rZr�rN)r�start�endrfr�r!r<rrr�xover7s
	�z
NNTP.xoverc	Csxd|jvrdnd}t|ttf�r>|\}}|d�||p6d�7}n|durR|d|}|�||�\}}|��}|t||�fS)a�Process an OVER command.  If the command isn't supported, fall
        back to XOVER. Arguments:
        - message_spec:
            - either a message id, indicating the article to fetch
              information about
            - or a (start, end) tuple, indicating a range of article numbers;
              if end is None, information up to the newest message will be
              retrieved
            - or None, indicating the current article number must be used
        - file: Filename string or file object to store the result in
        Returns:
        - resp: server response if successful
        - list: list of dicts containing the response fields

        NOTE: the "message id" form isn't supported by XOVER
        ZOVERZXOVERz {0}-{1}r+Nr�)rtr-�tupler�rZr�r�rN)	rr�rfr�r�r�r�r!r<rrr�overEsz	NNTP.overcCsb|�d�}|�d�st|��|��}t|�dkr8t|��|d}t|�dkrTt|��|t|d�fS)z�Process the DATE command.
        Returns:
        - resp: server response if successful
        - date: datetime object
        ZDATEZ111rOr5�N)r�rGrrDr;r
rY)rr��elemrrrrr`s

z	NNTP.datecCs�|�|�}|�d�st|��t|ttf�r2|��}|D]:}|�t�sR|�	d�t}|�d�rdd|}|j
�|�q6|j
�d�|j
��|�
�S)N�3r"r�s.
)r�rGrr-r �	bytearray�
splitlines�endswithr��rstriprfr�r�rr)rr��fr�r=rrr�_postqs




z
NNTP._postcCs|�d|�S)z�Process a POST command.  Arguments:
        - data: bytes object, iterable or file containing the article
        Returns:
        - resp: server response if successfulZPOST)r�)r�datarrr�post�sz	NNTP.postcCs|�d�|�|�S)aProcess an IHAVE command.  Arguments:
        - message_id: message-id of the article
        - data: file containing the article
        Returns:
        - resp: server response if successful
        Note that if the server refuses the article an exception is raised.z	IHAVE {0})r�rZ)rr)r�rrr�ihave�sz
NNTP.ihavecCs4z"|jr|j��|`W|j��n|j��0dSrz)rfrjr^r{rrrr��s

zNNTP._closecCs&z|�d�}W|��n
|��0|S)zdProcess a QUIT command and close the socket.  Returns:
        - resp: server response if successfulZQUIT)r�r�)rr�rrrr��sz	NNTP.quitcCs�|jrtd��|s|std��z<|rX|sXddl}|��}|�|j�}|rX|d}|d}WntylYn0|svdS|�d|�}|�d�r�|s�t|��n |�d|�}|�d�s�t	|��d|_
|��|jr�d	|j
vr�|�
�d|_
|��dS)
NzAlready logged in.z7At least one of `user` and `usenetrc` must be specifiedrrOzauthinfo user Z381zauthinfo pass Z281rp)ryr��netrcZauthenticatorsrcr�r�rGrrrtrurvrw)rrkrlrnr�ZcredentialsZauthr�rrrri�s>�


z
NNTP.loginc
Cs`z|�d�|_WnJty"Yn:tyZ}z"|j�d�rDd|_n�WYd}~n
d}~00dS)Nzmode readerZ480T)r�rsrrr
rGrv)r�errrrw�szNNTP._setreadermodecCs||jrtd��|jrtd��|�d�}|�d�rp|j��t|j||j	�|_|j�
d�|_d|_d|_|��nt
d��dS)	zzProcess a STARTTLS command. Arguments:
            - context: SSL context to use for the encrypted connection
            zTLS is already enabled.z+TLS cannot be started after authentication.�STARTTLSZ382rbTNzTLS failed to start.)rxr�ryr�rGrfrjr`r^rcrgrtrur)rr_r�rrr�starttls�s



z
NNTP.starttls)T)N)N)N)N)N)N)N)N)N)NNT)N):rrrr�r��	NNTP_PORTrrrhr|r�rer�rur��debugr�r�r�rrr�r�r�r�r�r�r�r�r�r�r�r�r�r$r�r�r�r�r�r%r�r�r�r�r�r�r�r�rr�r�r�r�r�rirw�	_have_sslr�rrrrr(sp
�
#"		

.







		
)
rcs8eZdZedddddef�fdd�	Z�fdd�Z�ZS)�NNTP_SSLNFc			s"||_t��|||||||�dS)z�This works identically to NNTP.__init__, except for the change
            in default port and the `ssl_context` argument for SSL connections.
            N)�ssl_context�superr)	rrcrdrkrlr�rmrnro�r�rrr�s�zNNTP_SSL.__init__cs@t��|�}zt||j|j�}Wn|���Yn0|SdSrz)r�rer`r�rcrj)rror^r�rrreszNNTP_SSL._create_socket)rrr�
NNTP_SSL_PORTrrre�
__classcell__rrr�rr��s�r��__main__zJ        nntplib built-in demo - display the latest articles in a newsgroup)r�z-gz--groupzgmane.comp.python.generalz3group to fetch messages from (default: %(default)s))�defaultr�z-sz--serverz
news.gmane.ioz+NNTP server hostname (default: %(default)s)z-pz--portr�z#NNTP port number (default: %s / %s))r��typer�z-nz
--nb-articles�
z2number of articles to fetch (default: %(default)s)z-Sz--ssl�
store_truezuse NNTP over SSL)�actionr�r�)rcrdr�ZGroupZhaszarticles, range�tocCs$t|�|kr |d|d�d}|S)NrPz...)r;)�sZlimrrr�cut3srr5r�<rz{:7} {:20} {:42} ({})��*)N)N)F)Irr�r��collectionsrUr�r]�ImportErrorr�Zemail.headerrr,r�__all__r�rrrrrr	r
r�r�r�r:r8r��
namedtupler#r(rBrNrYr\r`rr�r.r�argparse�ArgumentParser�parser�add_argumentrE�
parse_argsrrdZserverrrur�r�r$r�r�r&r%r>r�rr�Znb_articlesr�Z	overviewsZartnumr�rDZauthorrr!rZr�rrrr�<module>s�A

	���


S


�
�
���


�

Name
Size
Permissions
Options
__future__.cpython-39.opt-1.pyc
4.042 KB
-rw-r--r--
__future__.cpython-39.opt-2.pyc
2.116 KB
-rw-r--r--
__future__.cpython-39.pyc
4.042 KB
-rw-r--r--
__phello__.foo.cpython-39.opt-1.pyc
0.139 KB
-rw-r--r--
__phello__.foo.cpython-39.opt-2.pyc
0.139 KB
-rw-r--r--
__phello__.foo.cpython-39.pyc
0.139 KB
-rw-r--r--
_aix_support.cpython-39.opt-1.pyc
2.987 KB
-rw-r--r--
_aix_support.cpython-39.opt-2.pyc
1.664 KB
-rw-r--r--
_aix_support.cpython-39.pyc
2.987 KB
-rw-r--r--
_bootlocale.cpython-39.opt-1.pyc
1.201 KB
-rw-r--r--
_bootlocale.cpython-39.opt-2.pyc
0.981 KB
-rw-r--r--
_bootlocale.cpython-39.pyc
1.211 KB
-rw-r--r--
_bootsubprocess.cpython-39.opt-1.pyc
2.205 KB
-rw-r--r--
_bootsubprocess.cpython-39.opt-2.pyc
1.981 KB
-rw-r--r--
_bootsubprocess.cpython-39.pyc
2.205 KB
-rw-r--r--
_collections_abc.cpython-39.opt-1.pyc
31 KB
-rw-r--r--
_collections_abc.cpython-39.opt-2.pyc
25.639 KB
-rw-r--r--
_collections_abc.cpython-39.pyc
31 KB
-rw-r--r--
_compat_pickle.cpython-39.opt-1.pyc
5.32 KB
-rw-r--r--
_compat_pickle.cpython-39.opt-2.pyc
5.32 KB
-rw-r--r--
_compat_pickle.cpython-39.pyc
5.372 KB
-rw-r--r--
_compression.cpython-39.opt-1.pyc
4.112 KB
-rw-r--r--
_compression.cpython-39.opt-2.pyc
3.903 KB
-rw-r--r--
_compression.cpython-39.pyc
4.112 KB
-rw-r--r--
_markupbase.cpython-39.opt-1.pyc
7.46 KB
-rw-r--r--
_markupbase.cpython-39.opt-2.pyc
7.091 KB
-rw-r--r--
_markupbase.cpython-39.pyc
7.607 KB
-rw-r--r--
_osx_support.cpython-39.opt-1.pyc
11.323 KB
-rw-r--r--
_osx_support.cpython-39.opt-2.pyc
8.696 KB
-rw-r--r--
_osx_support.cpython-39.pyc
11.323 KB
-rw-r--r--
_py_abc.cpython-39.opt-1.pyc
4.538 KB
-rw-r--r--
_py_abc.cpython-39.opt-2.pyc
3.354 KB
-rw-r--r--
_py_abc.cpython-39.pyc
4.56 KB
-rw-r--r--
_pydecimal.cpython-39.opt-1.pyc
156.861 KB
-rw-r--r--
_pydecimal.cpython-39.opt-2.pyc
77.157 KB
-rw-r--r--
_pydecimal.cpython-39.pyc
156.861 KB
-rw-r--r--
_pyio.cpython-39.opt-1.pyc
72.637 KB
-rw-r--r--
_pyio.cpython-39.opt-2.pyc
50.374 KB
-rw-r--r--
_pyio.cpython-39.pyc
72.656 KB
-rw-r--r--
_sitebuiltins.cpython-39.opt-1.pyc
3.432 KB
-rw-r--r--
_sitebuiltins.cpython-39.opt-2.pyc
2.92 KB
-rw-r--r--
_sitebuiltins.cpython-39.pyc
3.432 KB
-rw-r--r--
_strptime.cpython-39.opt-1.pyc
15.652 KB
-rw-r--r--
_strptime.cpython-39.opt-2.pyc
12.012 KB
-rw-r--r--
_strptime.cpython-39.pyc
15.652 KB
-rw-r--r--
_sysconfigdata__linux_x86_64-linux-gnu.cpython-39.opt-1.pyc
29.254 KB
-rw-r--r--
_sysconfigdata__linux_x86_64-linux-gnu.cpython-39.opt-2.pyc
29.254 KB
-rw-r--r--
_sysconfigdata__linux_x86_64-linux-gnu.cpython-39.pyc
29.254 KB
-rw-r--r--
_sysconfigdata_d_linux_x86_64-linux-gnu.cpython-39.opt-1.pyc
29.102 KB
-rw-r--r--
_sysconfigdata_d_linux_x86_64-linux-gnu.cpython-39.opt-2.pyc
29.102 KB
-rw-r--r--
_sysconfigdata_d_linux_x86_64-linux-gnu.cpython-39.pyc
29.102 KB
-rw-r--r--
_threading_local.cpython-39.opt-1.pyc
6.366 KB
-rw-r--r--
_threading_local.cpython-39.opt-2.pyc
3.124 KB
-rw-r--r--
_threading_local.cpython-39.pyc
6.366 KB
-rw-r--r--
_weakrefset.cpython-39.opt-1.pyc
7.556 KB
-rw-r--r--
_weakrefset.cpython-39.opt-2.pyc
7.556 KB
-rw-r--r--
_weakrefset.cpython-39.pyc
7.556 KB
-rw-r--r--
abc.cpython-39.opt-1.pyc
5.652 KB
-rw-r--r--
abc.cpython-39.opt-2.pyc
3.153 KB
-rw-r--r--
abc.cpython-39.pyc
5.652 KB
-rw-r--r--
aifc.cpython-39.opt-1.pyc
24.687 KB
-rw-r--r--
aifc.cpython-39.opt-2.pyc
19.602 KB
-rw-r--r--
aifc.cpython-39.pyc
24.687 KB
-rw-r--r--
antigravity.cpython-39.opt-1.pyc
0.813 KB
-rw-r--r--
antigravity.cpython-39.opt-2.pyc
0.672 KB
-rw-r--r--
antigravity.cpython-39.pyc
0.813 KB
-rw-r--r--
argparse.cpython-39.opt-1.pyc
62.066 KB
-rw-r--r--
argparse.cpython-39.opt-2.pyc
52.922 KB
-rw-r--r--
argparse.cpython-39.pyc
62.175 KB
-rw-r--r--
ast.cpython-39.opt-1.pyc
51.118 KB
-rw-r--r--
ast.cpython-39.opt-2.pyc
42.773 KB
-rw-r--r--
ast.cpython-39.pyc
51.168 KB
-rw-r--r--
asynchat.cpython-39.opt-1.pyc
6.675 KB
-rw-r--r--
asynchat.cpython-39.opt-2.pyc
5.332 KB
-rw-r--r--
asynchat.cpython-39.pyc
6.675 KB
-rw-r--r--
asyncore.cpython-39.opt-1.pyc
15.673 KB
-rw-r--r--
asyncore.cpython-39.opt-2.pyc
14.497 KB
-rw-r--r--
asyncore.cpython-39.pyc
15.673 KB
-rw-r--r--
base64.cpython-39.opt-1.pyc
15.953 KB
-rw-r--r--
base64.cpython-39.opt-2.pyc
10.563 KB
-rw-r--r--
base64.cpython-39.pyc
16.082 KB
-rw-r--r--
bdb.cpython-39.opt-1.pyc
23.978 KB
-rw-r--r--
bdb.cpython-39.opt-2.pyc
15.152 KB
-rw-r--r--
bdb.cpython-39.pyc
23.978 KB
-rw-r--r--
binhex.cpython-39.opt-1.pyc
12.674 KB
-rw-r--r--
binhex.cpython-39.opt-2.pyc
12.152 KB
-rw-r--r--
binhex.cpython-39.pyc
12.674 KB
-rw-r--r--
bisect.cpython-39.opt-1.pyc
2.308 KB
-rw-r--r--
bisect.cpython-39.opt-2.pyc
1.026 KB
-rw-r--r--
bisect.cpython-39.pyc
2.308 KB
-rw-r--r--
bz2.cpython-39.opt-1.pyc
11.287 KB
-rw-r--r--
bz2.cpython-39.opt-2.pyc
6.389 KB
-rw-r--r--
bz2.cpython-39.pyc
11.287 KB
-rw-r--r--
cProfile.cpython-39.opt-1.pyc
5.009 KB
-rw-r--r--
cProfile.cpython-39.opt-2.pyc
4.559 KB
-rw-r--r--
cProfile.cpython-39.pyc
5.009 KB
-rw-r--r--
calendar.cpython-39.opt-1.pyc
26.41 KB
-rw-r--r--
calendar.cpython-39.opt-2.pyc
21.926 KB
-rw-r--r--
calendar.cpython-39.pyc
26.41 KB
-rw-r--r--
cgi.cpython-39.opt-1.pyc
25.874 KB
-rw-r--r--
cgi.cpython-39.opt-2.pyc
17.646 KB
-rw-r--r--
cgi.cpython-39.pyc
25.874 KB
-rw-r--r--
cgitb.cpython-39.opt-1.pyc
9.96 KB
-rw-r--r--
cgitb.cpython-39.opt-2.pyc
8.398 KB
-rw-r--r--
cgitb.cpython-39.pyc
9.96 KB
-rw-r--r--
chunk.cpython-39.opt-1.pyc
4.74 KB
-rw-r--r--
chunk.cpython-39.opt-2.pyc
2.646 KB
-rw-r--r--
chunk.cpython-39.pyc
4.74 KB
-rw-r--r--
cmd.cpython-39.opt-1.pyc
12.392 KB
-rw-r--r--
cmd.cpython-39.opt-2.pyc
7.094 KB
-rw-r--r--
cmd.cpython-39.pyc
12.392 KB
-rw-r--r--
code.cpython-39.opt-1.pyc
9.696 KB
-rw-r--r--
code.cpython-39.opt-2.pyc
4.549 KB
-rw-r--r--
code.cpython-39.pyc
9.696 KB
-rw-r--r--
codecs.cpython-39.opt-1.pyc
33.106 KB
-rw-r--r--
codecs.cpython-39.opt-2.pyc
17.899 KB
-rw-r--r--
codecs.cpython-39.pyc
33.106 KB
-rw-r--r--
codeop.cpython-39.opt-1.pyc
6.319 KB
-rw-r--r--
codeop.cpython-39.opt-2.pyc
2.354 KB
-rw-r--r--
codeop.cpython-39.pyc
6.319 KB
-rw-r--r--
colorsys.cpython-39.opt-1.pyc
3.196 KB
-rw-r--r--
colorsys.cpython-39.opt-2.pyc
2.604 KB
-rw-r--r--
colorsys.cpython-39.pyc
3.196 KB
-rw-r--r--
compileall.cpython-39.opt-1.pyc
12.307 KB
-rw-r--r--
compileall.cpython-39.opt-2.pyc
9.124 KB
-rw-r--r--
compileall.cpython-39.pyc
12.307 KB
-rw-r--r--
configparser.cpython-39.opt-1.pyc
44.807 KB
-rw-r--r--
configparser.cpython-39.opt-2.pyc
30.021 KB
-rw-r--r--
configparser.cpython-39.pyc
44.807 KB
-rw-r--r--
contextlib.cpython-39.opt-1.pyc
19.083 KB
-rw-r--r--
contextlib.cpython-39.opt-2.pyc
13.629 KB
-rw-r--r--
contextlib.cpython-39.pyc
19.093 KB
-rw-r--r--
contextvars.cpython-39.opt-1.pyc
0.252 KB
-rw-r--r--
contextvars.cpython-39.opt-2.pyc
0.252 KB
-rw-r--r--
contextvars.cpython-39.pyc
0.252 KB
-rw-r--r--
copy.cpython-39.opt-1.pyc
6.813 KB
-rw-r--r--
copy.cpython-39.opt-2.pyc
4.563 KB
-rw-r--r--
copy.cpython-39.pyc
6.813 KB
-rw-r--r--
copyreg.cpython-39.opt-1.pyc
4.32 KB
-rw-r--r--
copyreg.cpython-39.opt-2.pyc
3.537 KB
-rw-r--r--
copyreg.cpython-39.pyc
4.339 KB
-rw-r--r--
crypt.cpython-39.opt-1.pyc
3.443 KB
-rw-r--r--
crypt.cpython-39.opt-2.pyc
2.797 KB
-rw-r--r--
crypt.cpython-39.pyc
3.443 KB
-rw-r--r--
csv.cpython-39.opt-1.pyc
11.584 KB
-rw-r--r--
csv.cpython-39.opt-2.pyc
9.591 KB
-rw-r--r--
csv.cpython-39.pyc
11.584 KB
-rw-r--r--
dataclasses.cpython-39.opt-1.pyc
22.686 KB
-rw-r--r--
dataclasses.cpython-39.opt-2.pyc
19.327 KB
-rw-r--r--
dataclasses.cpython-39.pyc
22.686 KB
-rw-r--r--
datetime.cpython-39.opt-1.pyc
55.651 KB
-rw-r--r--
datetime.cpython-39.opt-2.pyc
47.405 KB
-rw-r--r--
datetime.cpython-39.pyc
56.766 KB
-rw-r--r--
decimal.cpython-39.opt-1.pyc
0.363 KB
-rw-r--r--
decimal.cpython-39.opt-2.pyc
0.363 KB
-rw-r--r--
decimal.cpython-39.pyc
0.363 KB
-rw-r--r--
difflib.cpython-39.opt-1.pyc
57.198 KB
-rw-r--r--
difflib.cpython-39.opt-2.pyc
24.45 KB
-rw-r--r--
difflib.cpython-39.pyc
57.22 KB
-rw-r--r--
dis.cpython-39.opt-1.pyc
15.462 KB
-rw-r--r--
dis.cpython-39.opt-2.pyc
11.744 KB
-rw-r--r--
dis.cpython-39.pyc
15.462 KB
-rw-r--r--
doctest.cpython-39.opt-1.pyc
74.067 KB
-rw-r--r--
doctest.cpython-39.opt-2.pyc
39.589 KB
-rw-r--r--
doctest.cpython-39.pyc
74.27 KB
-rw-r--r--
enum.cpython-39.opt-1.pyc
25.423 KB
-rw-r--r--
enum.cpython-39.opt-2.pyc
20.616 KB
-rw-r--r--
enum.cpython-39.pyc
25.423 KB
-rw-r--r--
filecmp.cpython-39.opt-1.pyc
8.433 KB
-rw-r--r--
filecmp.cpython-39.opt-2.pyc
5.954 KB
-rw-r--r--
filecmp.cpython-39.pyc
8.433 KB
-rw-r--r--
fileinput.cpython-39.opt-1.pyc
13.479 KB
-rw-r--r--
fileinput.cpython-39.opt-2.pyc
8.003 KB
-rw-r--r--
fileinput.cpython-39.pyc
13.479 KB
-rw-r--r--
fnmatch.cpython-39.opt-1.pyc
3.792 KB
-rw-r--r--
fnmatch.cpython-39.opt-2.pyc
2.612 KB
-rw-r--r--
fnmatch.cpython-39.pyc
3.862 KB
-rw-r--r--
formatter.cpython-39.opt-1.pyc
17.141 KB
-rw-r--r--
formatter.cpython-39.opt-2.pyc
14.758 KB
-rw-r--r--
formatter.cpython-39.pyc
17.141 KB
-rw-r--r--
fractions.cpython-39.opt-1.pyc
17.639 KB
-rw-r--r--
fractions.cpython-39.opt-2.pyc
10.607 KB
-rw-r--r--
fractions.cpython-39.pyc
17.639 KB
-rw-r--r--
ftplib.cpython-39.opt-1.pyc
28.034 KB
-rw-r--r--
ftplib.cpython-39.opt-2.pyc
18.128 KB
-rw-r--r--
ftplib.cpython-39.pyc
28.034 KB
-rw-r--r--
functools.cpython-39.opt-1.pyc
28.063 KB
-rw-r--r--
functools.cpython-39.opt-2.pyc
21.499 KB
-rw-r--r--
functools.cpython-39.pyc
28.063 KB
-rw-r--r--
genericpath.cpython-39.opt-1.pyc
4.447 KB
-rw-r--r--
genericpath.cpython-39.opt-2.pyc
3.292 KB
-rw-r--r--
genericpath.cpython-39.pyc
4.447 KB
-rw-r--r--
getopt.cpython-39.opt-1.pyc
6.108 KB
-rw-r--r--
getopt.cpython-39.opt-2.pyc
3.614 KB
-rw-r--r--
getopt.cpython-39.pyc
6.126 KB
-rw-r--r--
getpass.cpython-39.opt-1.pyc
4.114 KB
-rw-r--r--
getpass.cpython-39.opt-2.pyc
2.956 KB
-rw-r--r--
getpass.cpython-39.pyc
4.114 KB
-rw-r--r--
gettext.cpython-39.opt-1.pyc
17.662 KB
-rw-r--r--
gettext.cpython-39.opt-2.pyc
16.987 KB
-rw-r--r--
gettext.cpython-39.pyc
17.662 KB
-rw-r--r--
glob.cpython-39.opt-1.pyc
4.412 KB
-rw-r--r--
glob.cpython-39.opt-2.pyc
3.572 KB
-rw-r--r--
glob.cpython-39.pyc
4.45 KB
-rw-r--r--
graphlib.cpython-39.opt-1.pyc
7.358 KB
-rw-r--r--
graphlib.cpython-39.opt-2.pyc
4.003 KB
-rw-r--r--
graphlib.cpython-39.pyc
7.403 KB
-rw-r--r--
gzip.cpython-39.opt-1.pyc
18.073 KB
-rw-r--r--
gzip.cpython-39.opt-2.pyc
14.297 KB
-rw-r--r--
gzip.cpython-39.pyc
18.073 KB
-rw-r--r--
hashlib.cpython-39.opt-1.pyc
6.547 KB
-rw-r--r--
hashlib.cpython-39.opt-2.pyc
5.992 KB
-rw-r--r--
hashlib.cpython-39.pyc
6.547 KB
-rw-r--r--
heapq.cpython-39.opt-1.pyc
13.724 KB
-rw-r--r--
heapq.cpython-39.opt-2.pyc
10.778 KB
-rw-r--r--
heapq.cpython-39.pyc
13.724 KB
-rw-r--r--
hmac.cpython-39.opt-1.pyc
6.653 KB
-rw-r--r--
hmac.cpython-39.opt-2.pyc
4.195 KB
-rw-r--r--
hmac.cpython-39.pyc
6.653 KB
-rw-r--r--
imaplib.cpython-39.opt-1.pyc
39.451 KB
-rw-r--r--
imaplib.cpython-39.opt-2.pyc
27.065 KB
-rw-r--r--
imaplib.cpython-39.pyc
41.581 KB
-rw-r--r--
imghdr.cpython-39.opt-1.pyc
4.056 KB
-rw-r--r--
imghdr.cpython-39.opt-2.pyc
3.748 KB
-rw-r--r--
imghdr.cpython-39.pyc
4.056 KB
-rw-r--r--
imp.cpython-39.opt-1.pyc
9.633 KB
-rw-r--r--
imp.cpython-39.opt-2.pyc
7.323 KB
-rw-r--r--
imp.cpython-39.pyc
9.633 KB
-rw-r--r--
inspect.cpython-39.opt-1.pyc
79.339 KB
-rw-r--r--
inspect.cpython-39.opt-2.pyc
54.8 KB
-rw-r--r--
inspect.cpython-39.pyc
79.575 KB
-rw-r--r--
io.cpython-39.opt-1.pyc
3.341 KB
-rw-r--r--
io.cpython-39.opt-2.pyc
1.887 KB
-rw-r--r--
io.cpython-39.pyc
3.341 KB
-rw-r--r--
ipaddress.cpython-39.opt-1.pyc
64.155 KB
-rw-r--r--
ipaddress.cpython-39.opt-2.pyc
38.784 KB
-rw-r--r--
ipaddress.cpython-39.pyc
64.155 KB
-rw-r--r--
keyword.cpython-39.opt-1.pyc
0.907 KB
-rw-r--r--
keyword.cpython-39.opt-2.pyc
0.513 KB
-rw-r--r--
keyword.cpython-39.pyc
0.907 KB
-rw-r--r--
linecache.cpython-39.opt-1.pyc
3.946 KB
-rw-r--r--
linecache.cpython-39.opt-2.pyc
2.742 KB
-rw-r--r--
linecache.cpython-39.pyc
3.946 KB
-rw-r--r--
locale.cpython-39.opt-1.pyc
33.896 KB
-rw-r--r--
locale.cpython-39.opt-2.pyc
29.386 KB
-rw-r--r--
locale.cpython-39.pyc
33.896 KB
-rw-r--r--
lzma.cpython-39.opt-1.pyc
11.823 KB
-rw-r--r--
lzma.cpython-39.opt-2.pyc
5.771 KB
-rw-r--r--
lzma.cpython-39.pyc
11.823 KB
-rw-r--r--
mailbox.cpython-39.opt-1.pyc
59.14 KB
-rw-r--r--
mailbox.cpython-39.opt-2.pyc
52.69 KB
-rw-r--r--
mailbox.cpython-39.pyc
59.192 KB
-rw-r--r--
mailcap.cpython-39.opt-1.pyc
7.082 KB
-rw-r--r--
mailcap.cpython-39.opt-2.pyc
5.549 KB
-rw-r--r--
mailcap.cpython-39.pyc
7.082 KB
-rw-r--r--
mimetypes.cpython-39.opt-1.pyc
15.652 KB
-rw-r--r--
mimetypes.cpython-39.opt-2.pyc
9.778 KB
-rw-r--r--
mimetypes.cpython-39.pyc
15.652 KB
-rw-r--r--
modulefinder.cpython-39.opt-1.pyc
15.718 KB
-rw-r--r--
modulefinder.cpython-39.opt-2.pyc
14.83 KB
-rw-r--r--
modulefinder.cpython-39.pyc
15.763 KB
-rw-r--r--
netrc.cpython-39.opt-1.pyc
3.707 KB
-rw-r--r--
netrc.cpython-39.opt-2.pyc
3.475 KB
-rw-r--r--
netrc.cpython-39.pyc
3.707 KB
-rw-r--r--
nntplib.cpython-39.opt-1.pyc
31.031 KB
-rw-r--r--
nntplib.cpython-39.opt-2.pyc
19.703 KB
-rw-r--r--
nntplib.cpython-39.pyc
31.031 KB
-rw-r--r--
ntpath.cpython-39.opt-1.pyc
14.478 KB
-rw-r--r--
ntpath.cpython-39.opt-2.pyc
12.475 KB
-rw-r--r--
ntpath.cpython-39.pyc
14.478 KB
-rw-r--r--
nturl2path.cpython-39.opt-1.pyc
1.718 KB
-rw-r--r--
nturl2path.cpython-39.opt-2.pyc
1.309 KB
-rw-r--r--
nturl2path.cpython-39.pyc
1.718 KB
-rw-r--r--
numbers.cpython-39.opt-1.pyc
12.043 KB
-rw-r--r--
numbers.cpython-39.opt-2.pyc
8.179 KB
-rw-r--r--
numbers.cpython-39.pyc
12.043 KB
-rw-r--r--
opcode.cpython-39.opt-1.pyc
5.113 KB
-rw-r--r--
opcode.cpython-39.opt-2.pyc
4.976 KB
-rw-r--r--
opcode.cpython-39.pyc
5.113 KB
-rw-r--r--
operator.cpython-39.opt-1.pyc
13.474 KB
-rw-r--r--
operator.cpython-39.opt-2.pyc
11.141 KB
-rw-r--r--
operator.cpython-39.pyc
13.474 KB
-rw-r--r--
optparse.cpython-39.opt-1.pyc
46.778 KB
-rw-r--r--
optparse.cpython-39.opt-2.pyc
34.752 KB
-rw-r--r--
optparse.cpython-39.pyc
46.832 KB
-rw-r--r--
os.cpython-39.opt-1.pyc
30.901 KB
-rw-r--r--
os.cpython-39.opt-2.pyc
18.997 KB
-rw-r--r--
os.cpython-39.pyc
30.917 KB
-rw-r--r--
pathlib.cpython-39.opt-1.pyc
42.521 KB
-rw-r--r--
pathlib.cpython-39.opt-2.pyc
33.868 KB
-rw-r--r--
pathlib.cpython-39.pyc
42.521 KB
-rw-r--r--
pdb.cpython-39.opt-1.pyc
46.445 KB
-rw-r--r--
pdb.cpython-39.opt-2.pyc
32.704 KB
-rw-r--r--
pdb.cpython-39.pyc
46.483 KB
-rw-r--r--
pickle.cpython-39.opt-1.pyc
45.923 KB
-rw-r--r--
pickle.cpython-39.opt-2.pyc
40.19 KB
-rw-r--r--
pickle.cpython-39.pyc
46.007 KB
-rw-r--r--
pickletools.cpython-39.opt-1.pyc
64.752 KB
-rw-r--r--
pickletools.cpython-39.opt-2.pyc
55.872 KB
-rw-r--r--
pickletools.cpython-39.pyc
65.547 KB
-rw-r--r--
pipes.cpython-39.opt-1.pyc
7.625 KB
-rw-r--r--
pipes.cpython-39.opt-2.pyc
4.825 KB
-rw-r--r--
pipes.cpython-39.pyc
7.625 KB
-rw-r--r--
pkgutil.cpython-39.opt-1.pyc
18.144 KB
-rw-r--r--
pkgutil.cpython-39.opt-2.pyc
11.602 KB
-rw-r--r--
pkgutil.cpython-39.pyc
18.144 KB
-rw-r--r--
platform.cpython-39.opt-1.pyc
25.81 KB
-rw-r--r--
platform.cpython-39.opt-2.pyc
17.931 KB
-rw-r--r--
platform.cpython-39.pyc
25.81 KB
-rw-r--r--
plistlib.cpython-39.opt-1.pyc
22.958 KB
-rw-r--r--
plistlib.cpython-39.opt-2.pyc
20.654 KB
-rw-r--r--
plistlib.cpython-39.pyc
23.008 KB
-rw-r--r--
poplib.cpython-39.opt-1.pyc
13.35 KB
-rw-r--r--
poplib.cpython-39.opt-2.pyc
8.535 KB
-rw-r--r--
poplib.cpython-39.pyc
13.35 KB
-rw-r--r--
posixpath.cpython-39.opt-1.pyc
10.373 KB
-rw-r--r--
posixpath.cpython-39.opt-2.pyc
8.698 KB
-rw-r--r--
posixpath.cpython-39.pyc
10.373 KB
-rw-r--r--
pprint.cpython-39.opt-1.pyc
16.416 KB
-rw-r--r--
pprint.cpython-39.opt-2.pyc
14.31 KB
-rw-r--r--
pprint.cpython-39.pyc
16.448 KB
-rw-r--r--
profile.cpython-39.opt-1.pyc
13.902 KB
-rw-r--r--
profile.cpython-39.opt-2.pyc
10.994 KB
-rw-r--r--
profile.cpython-39.pyc
14.086 KB
-rw-r--r--
pstats.cpython-39.opt-1.pyc
23.208 KB
-rw-r--r--
pstats.cpython-39.opt-2.pyc
20.367 KB
-rw-r--r--
pstats.cpython-39.pyc
23.208 KB
-rw-r--r--
pty.cpython-39.opt-1.pyc
3.876 KB
-rw-r--r--
pty.cpython-39.opt-2.pyc
3.051 KB
-rw-r--r--
pty.cpython-39.pyc
3.876 KB
-rw-r--r--
py_compile.cpython-39.opt-1.pyc
7.235 KB
-rw-r--r--
py_compile.cpython-39.opt-2.pyc
3.585 KB
-rw-r--r--
py_compile.cpython-39.pyc
7.235 KB
-rw-r--r--
pyclbr.cpython-39.opt-1.pyc
10.217 KB
-rw-r--r--
pyclbr.cpython-39.opt-2.pyc
6.7 KB
-rw-r--r--
pyclbr.cpython-39.pyc
10.217 KB
-rw-r--r--
pydoc.cpython-39.opt-1.pyc
83.438 KB
-rw-r--r--
pydoc.cpython-39.opt-2.pyc
73.788 KB
-rw-r--r--
pydoc.cpython-39.pyc
83.47 KB
-rw-r--r--
queue.cpython-39.opt-1.pyc
10.634 KB
-rw-r--r--
queue.cpython-39.opt-2.pyc
6.386 KB
-rw-r--r--
queue.cpython-39.pyc
10.634 KB
-rw-r--r--
quopri.cpython-39.opt-1.pyc
5.484 KB
-rw-r--r--
quopri.cpython-39.opt-2.pyc
4.473 KB
-rw-r--r--
quopri.cpython-39.pyc
5.625 KB
-rw-r--r--
random.cpython-39.opt-1.pyc
21.539 KB
-rw-r--r--
random.cpython-39.opt-2.pyc
14.267 KB
-rw-r--r--
random.cpython-39.pyc
21.539 KB
-rw-r--r--
re.cpython-39.opt-1.pyc
14.038 KB
-rw-r--r--
re.cpython-39.opt-2.pyc
5.896 KB
-rw-r--r--
re.cpython-39.pyc
14.038 KB
-rw-r--r--
reprlib.cpython-39.opt-1.pyc
5.195 KB
-rw-r--r--
reprlib.cpython-39.opt-2.pyc
5.043 KB
-rw-r--r--
reprlib.cpython-39.pyc
5.195 KB
-rw-r--r--
rlcompleter.cpython-39.opt-1.pyc
5.683 KB
-rw-r--r--
rlcompleter.cpython-39.opt-2.pyc
3.082 KB
-rw-r--r--
rlcompleter.cpython-39.pyc
5.683 KB
-rw-r--r--
runpy.cpython-39.opt-1.pyc
9.178 KB
-rw-r--r--
runpy.cpython-39.opt-2.pyc
6.793 KB
-rw-r--r--
runpy.cpython-39.pyc
9.178 KB
-rw-r--r--
sched.cpython-39.opt-1.pyc
6.49 KB
-rw-r--r--
sched.cpython-39.opt-2.pyc
3.533 KB
-rw-r--r--
sched.cpython-39.pyc
6.49 KB
-rw-r--r--
secrets.cpython-39.opt-1.pyc
2.142 KB
-rw-r--r--
secrets.cpython-39.opt-2.pyc
1.108 KB
-rw-r--r--
secrets.cpython-39.pyc
2.142 KB
-rw-r--r--
selectors.cpython-39.opt-1.pyc
16.854 KB
-rw-r--r--
selectors.cpython-39.opt-2.pyc
12.841 KB
-rw-r--r--
selectors.cpython-39.pyc
16.854 KB
-rw-r--r--
shelve.cpython-39.opt-1.pyc
9.333 KB
-rw-r--r--
shelve.cpython-39.opt-2.pyc
5.279 KB
-rw-r--r--
shelve.cpython-39.pyc
9.333 KB
-rw-r--r--
shlex.cpython-39.opt-1.pyc
7.565 KB
-rw-r--r--
shlex.cpython-39.opt-2.pyc
7.021 KB
-rw-r--r--
shlex.cpython-39.pyc
7.565 KB
-rw-r--r--
shutil.cpython-39.opt-1.pyc
37.607 KB
-rw-r--r--
shutil.cpython-39.opt-2.pyc
25.822 KB
-rw-r--r--
shutil.cpython-39.pyc
37.607 KB
-rw-r--r--
signal.cpython-39.opt-1.pyc
2.948 KB
-rw-r--r--
signal.cpython-39.opt-2.pyc
2.729 KB
-rw-r--r--
signal.cpython-39.pyc
2.948 KB
-rw-r--r--
site.cpython-39.opt-1.pyc
16.624 KB
-rw-r--r--
site.cpython-39.opt-2.pyc
11.218 KB
-rw-r--r--
site.cpython-39.pyc
16.624 KB
-rw-r--r--
smtpd.cpython-39.opt-1.pyc
25.915 KB
-rw-r--r--
smtpd.cpython-39.opt-2.pyc
23.356 KB
-rw-r--r--
smtpd.cpython-39.pyc
25.915 KB
-rw-r--r--
smtplib.cpython-39.opt-1.pyc
35.057 KB
-rw-r--r--
smtplib.cpython-39.opt-2.pyc
19.078 KB
-rw-r--r--
smtplib.cpython-39.pyc
35.101 KB
-rw-r--r--
sndhdr.cpython-39.opt-1.pyc
6.842 KB
-rw-r--r--
sndhdr.cpython-39.opt-2.pyc
5.597 KB
-rw-r--r--
sndhdr.cpython-39.pyc
6.842 KB
-rw-r--r--
socket.cpython-39.opt-1.pyc
28.31 KB
-rw-r--r--
socket.cpython-39.opt-2.pyc
19.971 KB
-rw-r--r--
socket.cpython-39.pyc
28.333 KB
-rw-r--r--
socketserver.cpython-39.opt-1.pyc
24.93 KB
-rw-r--r--
socketserver.cpython-39.opt-2.pyc
14.465 KB
-rw-r--r--
socketserver.cpython-39.pyc
24.93 KB
-rw-r--r--
sre_compile.cpython-39.opt-1.pyc
14.621 KB
-rw-r--r--
sre_compile.cpython-39.opt-2.pyc
14.217 KB
-rw-r--r--
sre_compile.cpython-39.pyc
14.812 KB
-rw-r--r--
sre_constants.cpython-39.opt-1.pyc
6.2 KB
-rw-r--r--
sre_constants.cpython-39.opt-2.pyc
5.785 KB
-rw-r--r--
sre_constants.cpython-39.pyc
6.2 KB
-rw-r--r--
sre_parse.cpython-39.opt-1.pyc
21.274 KB
-rw-r--r--
sre_parse.cpython-39.opt-2.pyc
21.228 KB
-rw-r--r--
sre_parse.cpython-39.pyc
21.311 KB
-rw-r--r--
ssl.cpython-39.opt-1.pyc
44.014 KB
-rw-r--r--
ssl.cpython-39.opt-2.pyc
33.287 KB
-rw-r--r--
ssl.cpython-39.pyc
44.014 KB
-rw-r--r--
stat.cpython-39.opt-1.pyc
4.282 KB
-rw-r--r--
stat.cpython-39.opt-2.pyc
3.518 KB
-rw-r--r--
stat.cpython-39.pyc
4.282 KB
-rw-r--r--
statistics.cpython-39.opt-1.pyc
31.052 KB
-rw-r--r--
statistics.cpython-39.opt-2.pyc
15.551 KB
-rw-r--r--
statistics.cpython-39.pyc
31.241 KB
-rw-r--r--
string.cpython-39.opt-1.pyc
7.01 KB
-rw-r--r--
string.cpython-39.opt-2.pyc
5.93 KB
-rw-r--r--
string.cpython-39.pyc
7.01 KB
-rw-r--r--
stringprep.cpython-39.opt-1.pyc
9.726 KB
-rw-r--r--
stringprep.cpython-39.opt-2.pyc
9.513 KB
-rw-r--r--
stringprep.cpython-39.pyc
9.765 KB
-rw-r--r--
struct.cpython-39.opt-1.pyc
0.312 KB
-rw-r--r--
struct.cpython-39.opt-2.pyc
0.312 KB
-rw-r--r--
struct.cpython-39.pyc
0.312 KB
-rw-r--r--
subprocess.cpython-39.opt-1.pyc
43.284 KB
-rw-r--r--
subprocess.cpython-39.opt-2.pyc
31.528 KB
-rw-r--r--
subprocess.cpython-39.pyc
43.358 KB
-rw-r--r--
sunau.cpython-39.opt-1.pyc
16.436 KB
-rw-r--r--
sunau.cpython-39.opt-2.pyc
11.953 KB
-rw-r--r--
sunau.cpython-39.pyc
16.436 KB
-rw-r--r--
symbol.cpython-39.opt-1.pyc
2.531 KB
-rw-r--r--
symbol.cpython-39.opt-2.pyc
2.457 KB
-rw-r--r--
symbol.cpython-39.pyc
2.531 KB
-rw-r--r--
symtable.cpython-39.opt-1.pyc
10.841 KB
-rw-r--r--
symtable.cpython-39.opt-2.pyc
10.129 KB
-rw-r--r--
symtable.cpython-39.pyc
10.917 KB
-rw-r--r--
sysconfig.cpython-39.opt-1.pyc
15.703 KB
-rw-r--r--
sysconfig.cpython-39.opt-2.pyc
13.381 KB
-rw-r--r--
sysconfig.cpython-39.pyc
15.703 KB
-rw-r--r--
tabnanny.cpython-39.opt-1.pyc
6.912 KB
-rw-r--r--
tabnanny.cpython-39.opt-2.pyc
6.001 KB
-rw-r--r--
tabnanny.cpython-39.pyc
6.912 KB
-rw-r--r--
tarfile.cpython-39.opt-1.pyc
71.115 KB
-rw-r--r--
tarfile.cpython-39.opt-2.pyc
56.215 KB
-rw-r--r--
tarfile.cpython-39.pyc
71.13 KB
-rw-r--r--
telnetlib.cpython-39.opt-1.pyc
17.914 KB
-rw-r--r--
telnetlib.cpython-39.opt-2.pyc
10.588 KB
-rw-r--r--
telnetlib.cpython-39.pyc
17.914 KB
-rw-r--r--
tempfile.cpython-39.opt-1.pyc
23.114 KB
-rw-r--r--
tempfile.cpython-39.opt-2.pyc
16.741 KB
-rw-r--r--
tempfile.cpython-39.pyc
23.114 KB
-rw-r--r--
textwrap.cpython-39.opt-1.pyc
13.16 KB
-rw-r--r--
textwrap.cpython-39.opt-2.pyc
6.12 KB
-rw-r--r--
textwrap.cpython-39.pyc
13.217 KB
-rw-r--r--
this.cpython-39.opt-1.pyc
1.242 KB
-rw-r--r--
this.cpython-39.opt-2.pyc
1.242 KB
-rw-r--r--
this.cpython-39.pyc
1.242 KB
-rw-r--r--
threading.cpython-39.opt-1.pyc
40.751 KB
-rw-r--r--
threading.cpython-39.opt-2.pyc
23.967 KB
-rw-r--r--
threading.cpython-39.pyc
41.205 KB
-rw-r--r--
timeit.cpython-39.opt-1.pyc
11.493 KB
-rw-r--r--
timeit.cpython-39.opt-2.pyc
5.776 KB
-rw-r--r--
timeit.cpython-39.pyc
11.493 KB
-rw-r--r--
token.cpython-39.opt-1.pyc
2.45 KB
-rw-r--r--
token.cpython-39.opt-2.pyc
2.418 KB
-rw-r--r--
token.cpython-39.pyc
2.45 KB
-rw-r--r--
tokenize.cpython-39.opt-1.pyc
16.748 KB
-rw-r--r--
tokenize.cpython-39.opt-2.pyc
13.072 KB
-rw-r--r--
tokenize.cpython-39.pyc
16.775 KB
-rw-r--r--
trace.cpython-39.opt-1.pyc
19.309 KB
-rw-r--r--
trace.cpython-39.opt-2.pyc
16.364 KB
-rw-r--r--
trace.cpython-39.pyc
19.309 KB
-rw-r--r--
traceback.cpython-39.opt-1.pyc
19.974 KB
-rw-r--r--
traceback.cpython-39.opt-2.pyc
11.23 KB
-rw-r--r--
traceback.cpython-39.pyc
19.974 KB
-rw-r--r--
tracemalloc.cpython-39.opt-1.pyc
17.527 KB
-rw-r--r--
tracemalloc.cpython-39.opt-2.pyc
16.147 KB
-rw-r--r--
tracemalloc.cpython-39.pyc
17.527 KB
-rw-r--r--
tty.cpython-39.opt-1.pyc
1.065 KB
-rw-r--r--
tty.cpython-39.opt-2.pyc
0.959 KB
-rw-r--r--
tty.cpython-39.pyc
1.065 KB
-rw-r--r--
types.cpython-39.opt-1.pyc
9.032 KB
-rw-r--r--
types.cpython-39.opt-2.pyc
7.839 KB
-rw-r--r--
types.cpython-39.pyc
9.032 KB
-rw-r--r--
typing.cpython-39.opt-1.pyc
70.135 KB
-rw-r--r--
typing.cpython-39.opt-2.pyc
49.385 KB
-rw-r--r--
typing.cpython-39.pyc
70.262 KB
-rw-r--r--
uu.cpython-39.opt-1.pyc
3.77 KB
-rw-r--r--
uu.cpython-39.opt-2.pyc
3.531 KB
-rw-r--r--
uu.cpython-39.pyc
3.77 KB
-rw-r--r--
uuid.cpython-39.opt-1.pyc
21.885 KB
-rw-r--r--
uuid.cpython-39.opt-2.pyc
14.353 KB
-rw-r--r--
uuid.cpython-39.pyc
21.995 KB
-rw-r--r--
warnings.cpython-39.opt-1.pyc
12.87 KB
-rw-r--r--
warnings.cpython-39.opt-2.pyc
10.648 KB
-rw-r--r--
warnings.cpython-39.pyc
13.299 KB
-rw-r--r--
wave.cpython-39.opt-1.pyc
17.438 KB
-rw-r--r--
wave.cpython-39.opt-2.pyc
11.587 KB
-rw-r--r--
wave.cpython-39.pyc
17.467 KB
-rw-r--r--
weakref.cpython-39.opt-1.pyc
19.809 KB
-rw-r--r--
weakref.cpython-39.opt-2.pyc
16.601 KB
-rw-r--r--
weakref.cpython-39.pyc
19.822 KB
-rw-r--r--
webbrowser.cpython-39.opt-1.pyc
16.729 KB
-rw-r--r--
webbrowser.cpython-39.opt-2.pyc
14.375 KB
-rw-r--r--
webbrowser.cpython-39.pyc
16.745 KB
-rw-r--r--
xdrlib.cpython-39.opt-1.pyc
8.063 KB
-rw-r--r--
xdrlib.cpython-39.opt-2.pyc
7.589 KB
-rw-r--r--
xdrlib.cpython-39.pyc
8.063 KB
-rw-r--r--
zipapp.cpython-39.opt-1.pyc
5.857 KB
-rw-r--r--
zipapp.cpython-39.opt-2.pyc
4.709 KB
-rw-r--r--
zipapp.cpython-39.pyc
5.857 KB
-rw-r--r--
zipfile.cpython-39.opt-1.pyc
58.167 KB
-rw-r--r--
zipfile.cpython-39.opt-2.pyc
49.39 KB
-rw-r--r--
zipfile.cpython-39.pyc
58.188 KB
-rw-r--r--
zipimport.cpython-39.opt-1.pyc
16.77 KB
-rw-r--r--
zipimport.cpython-39.opt-2.pyc
13.334 KB
-rw-r--r--
zipimport.cpython-39.pyc
16.846 KB
-rw-r--r--