| Server IP : 162.19.112.25 / Your IP : 216.73.216.88 Web Server : LiteSpeed System : Linux qamar.tasjeel.ae 5.14.0-611.55.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Tue May 19 15:19:29 EDT 2026 x86_64 User : archiart ( 1428) PHP Version : 8.2.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /opt/cloudlinux/venv/lib/python3.11/site-packages/gitdb/__pycache__/ |
Upload File : |
�
_��ed�jD� �B � d Z ddlmZ ddlmZmZ dZ G d� de� � Z G d� de� � Z G d � d
e � � Z
G d� de� � Z G d
� de� � Z G d� de � � Z
G d� de
� � Z G d� de� � Z G d� de� � Z G d� de� � ZdS )zPModule with basic data structures - they are designed to be lightweight and fast� ��
bin_to_hex)�type_id_to_type_map�type_to_type_id_map) �OInfo� OPackInfo�ODeltaPackInfo�OStream�OPackStream�ODeltaPackStream�IStream�InvalidOInfo�InvalidOStreamc � � e Zd ZdZ e� � Zd� Zd� Zed� � � Z ed� � � Z
ed� � � Zed� � � Zed� � � Z
d S )
r a� Carries information about an object in an ODB, providing information
about the binary sha of the object, the type_string as well as the uncompressed size
in bytes.
It can be accessed using tuple notation and using attribute access notation::
assert dbi[0] == dbi.binsha
assert dbi[1] == dbi.type
assert dbi[2] == dbi.size
The type is designed to be as lightweight as possible.c �>