Lonami

Results 591 comments of Lonami

> I think that the connection manager should be responsible for all Errors By this do you mean one of the libraries should deal with network errors and reconnect when...

The names are subject to change, and I don't like the fact we're currently abusing an `AuthorizationError` can come from an `InvocationError`, so the examples just use the former (even...

`try/except` is used when you're going to handle the exception. If you do this: ```python try: error except: pass ``` You are **not** handling the exception. You're ignoring it. In...

`raise` will re-raise the error so Telethon's logging can log it. `print` is the wrong way to go to log errors. Again I'll accept if we suggest the user to...

Never late to the party! Right…? Awesome job, like with everything on your website, you really work it all out there hasn't been a second I haven't enjoyed your creations...

As I understand it, these tools are not required for `setup.py` but since a lot of projects assume they will be there, they normally end up being installed. See [What...

Maybe [StackOverflow - Please explain “Task was destroyed but it is pending!”](https://stackoverflow.com/q/40897428/4759433) sheds some light (TL; DR, perhaps `loop.stop()`? I just came across this issue and found it still open....

Thanks for the detailed report. Your linked fix seems to be more of a workaround than an actual fix. Ideally, we would figure out *why* the 429 happens. That is,...

We can modify `client.edit_messages` to accept a "private" `entities` parameter which would override the parsing, and from `message.edit` we just pass the `.raw_text` and `.entities` which we have. The same...