3
OÉ6b   ã               @   s,   d Z ddlmZ ereZG dd„ deƒZdS )z(A BSON wrapper for long (int in python3)é    )ÚPY3c               @   s   e Zd ZdZdZdS )ÚInt64a?  Representation of the BSON int64 type.

    This is necessary because every integral number is an :class:`int` in
    Python 3. Small integral numbers are encoded to BSON int32 by default,
    but Int64 numbers will always be encoded to BSON int64.

    :Parameters:
      - `value`: the numeric value to represent
    é   N)Ú__name__Ú
__module__Ú__qualname__Ú__doc__Z_type_marker© r	   r	   úI/var/www/html/sandeepIITI/myenv/lib/python3.6/site-packages/bson/int64.pyr      s   	r   N)r   Zbson.py3compatr   ÚintÚlongr   r	   r	   r	   r
   Ú<module>   s   