Code indexing in gitaly is broken and leads to code not being visible to the user. We work on the issue with highest priority.

Skip to content
Snippets Groups Projects
Commit 9a87c38d authored by ulrich_y's avatar ulrich_y
Browse files

1: added write_record in python towards #12

parent a94a722d
No related branches found
No related tags found
No related merge requests found
......@@ -21,6 +21,20 @@ def read_record(fp, typ):
return body
def write_record(fp, typ, content):
if type(content) == str and len(content) > 1:
content = list(content)
elif type(content) != list:
content = [content]
body = "".join(
struct.pack("<"+typ, i) for i in content
)
fp.write(struct.pack('<I', len(body)))
fp.write(body)
fp.write(struct.pack('<I', len(body)))
def guess_version(fp, inttype='i'):
fp.seek(0)
magic = fp.read(17).replace('\00', '')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment