Ekin Dursun

Results 22 comments of Ekin Dursun

Can I take this? I think checking literal before sending to jvp_strtod.

According to what you said, it is unnecessary to fix this behavior. But what is bad about fixing this?

@BenBE I see that you indicated that the code must be multibyte aware. I totally agree with you and I started working on it. I have one question: Is it...

@Explorer09 @BenBE I tried to find a solution for finding out how many columns a character occupies. I saw `wcwidth` and `wcswidth` but their behavior changes according to locale, so...

@Explorer09 But I need to preprocess the string and decide which characters to keep or remove, before actually printing the characters. Do you suggest printing to a non-visible or dummy...

Does the filter disappear again if you change the keyword argument from `queryset=models.EventClass.objects` to `queryset=models.EventClass.objects.all()`?

`django-multitenant` needs to get the tenant from request before filtering. In your example, filtering happens at import time, which is before request. With `django-filter`, instead of a queryset, you can...

Second example passes bytes of `tar` archive to `echo` which ignores standard input and just passes `cp - s3://bar//foo.tar` to `s5cmd run`'s standard input. I think this is not the...

I'm working on a solution, but doing this results in self-check failure. I investigated the cause: The failure happens because some functions are annotated with return type `Any`, and when...