reloginn
reloginn
The first part doesn't give any errors. The second part gives an error, previously everything worked, with identical code (I automate translation, and I was able to translate about 15...
```python def translate(path: str) -> str: file = io.FileIO(file=path) content = str(file.read()) model = genai.GenerativeModel(model_name=MODEL, generation_config=GENERATION_CONFIG) chunks = [] chat = model.start_chat() PART_LEN = len(content) // 2 first_part = content[:PART_LEN]...
I've simplified `utf8.codes`, but it still has some bugs, which I'll fix as soon as possible. Regarding lax mode, I think it's better not to add it. However, we should...
I've simplified `utf8.codepoint` and I think we need to simplify `utf8.offset` because it doesn't look good. What do you think about it?
Hi! I have implemented all of your recommendations. May we proceed with the integration?
I started implementing all your fixes and began splitting this PR into smaller ones: #126: `string.pack`, `string.unpack`, `string.packsize` #127: `string.rep` #128: `string.format` #129: pattern matching I will close this PR.
@kyren @Aeledfyr can u review it and #130?