o
    
cQ                     @   sL   d dl mZ d dlmZmZ d dlmZ G dd deZdd Zdd	 Z	d
S )    )division)	timedeltatzinfo)deepcopyc                   @   s@   e Zd ZdZdd Zdd Zdd Zdd	 Zd
d Zdd Z	dS )FixedOffseta  
    Represent a timezone with a fixed offset from UTC and no adjustment for
    DST.

    >>> FixedOffset(4,0)
    <UTC+04:00>
    >>> FixedOffset(-4,0)
    <UTC-04:00>
    >>> FixedOffset(4,30)
    <UTC+04:30>

    >>> tz = FixedOffset(-5,0)
    >>> tz.dst(None)
    datetime.timedelta(0)

    The class tries to do the right thing with the sign
    of the time zone offset:

    >>> FixedOffset(-9,30)
    <UTC-09:30>
    >>> FixedOffset(-9,-30)
    Traceback (most recent call last):
    ...
    ValueError: minutes must not be negative

    Offsets must thus be normalized so that the minute value is positive:

    >>> FixedOffset(-8,30)
    <UTC-08:30>

    c                 C   sP   t |  |dk rtd|dk r|d9 }t||d| _dtt| j | _dS )zK
        Create a new FixedOffset instance with the given offset.

        r   zminutes must not be negative)hoursminutesUTCN)r   __init__
ValueErrorr   _FixedOffset__offsettimezonetimedelta_seconds_FixedOffset__name)selfr   r	    r   </opt/certbot/lib/python3.10/site-packages/pyrfc3339/utils.pyr   (   s   
zFixedOffset.__init__c                 C   s   t dS )zG
        Return offset for DST.  Always returns timedelta(0).

        r   )r   r   dtr   r   r   dst6   s   zFixedOffset.dstc                 C      | j S )z*
        Return offset from UTC.

        )r   r   r   r   r   	utcoffset=      zFixedOffset.utcoffsetc                 C   r   )z+
        Return name of timezone.

        )r   r   r   r   r   tznameD   r   zFixedOffset.tznamec                 C   s   d | d S )Nz<{0}>)formatr   )r   r   r   r   __repr__K   s   zFixedOffset.__repr__c                 C   sF   | j }||}||t| < | j D ]\}}t||t|| q|S )N)	__class____new__id__dict__itemssetattrr   )r   memoclsresultkvr   r   r   __deepcopy__N   s   
zFixedOffset.__deepcopy__N)
__name__
__module____qualname____doc__r   r   r   r   r   r(   r   r   r   r   r      s     r   c                 C   sT   z	t t|  W S  ty)   | j}| j}| j}t t|d | |d   Y S w )a  
    Return the offset stored by a :class:`datetime.timedelta` object as an
    integer number of seconds.  Microseconds, if present, are rounded to
    the nearest second.

    Delegates to
    :meth:`timedelta.total_seconds() <datetime.timedelta.total_seconds()>`
    if available.

    >>> timedelta_seconds(timedelta(hours=1))
    3600
    >>> timedelta_seconds(timedelta(hours=-1))
    -3600
    >>> timedelta_seconds(timedelta(hours=1, minutes=30))
    5400
    >>> timedelta_seconds(timedelta(hours=1, minutes=30,
    ... microseconds=300000))
    5400
    >>> timedelta_seconds(timedelta(hours=1, minutes=30,
    ...	microseconds=900000))
    5401

    iQ i@B )introundtotal_secondsAttributeErrordayssecondsmicroseconds)tdr1   r2   r3   r   r   r   r   W   s    r   c                 C   sJ   t t| d\}}tt|d }| dkrd}nd}d|t|t|S )z
    Return a string representing the timezone offset.
    Remaining seconds are rounded to the nearest minute.

    >>> timezone(3600)
    '+01:00'
    >>> timezone(5400)
    '+01:30'
    >>> timezone(-28800)
    '-08:00'

    i  <   r   +-z{0}{1:02d}:{2:02d})divmodabsr.   floatr   r-   )r   r   r2   r	   signr   r   r   r   z   s   r   N)

__future__r   datetimer   r   copyr   r   r   r   r   r   r   r   <module>   s    P#