Keerthi Vasan S A
Keerthi Vasan S A
Please let me know if we can continue with this approach I will add the limits for other data structures as well if so!
Hey @nessita, thanks for the go ahead! One of the problems I found is the old tests seem to be relying on some of behaviours with `pprint` that are not...
@felixxm I think the PR is ready for review!
Gotcha, thanks! Sorry this is my first time using Django Trac system so I don't know how to operate it. Hopefully it will be smoother in future contributions. I have...
I just thought of something else. If we use `reprlib` for collections, it will only limit the number of elements. but let's say we have a list of strings where...
@nessita Cool, i'll merge with the latest changes and fix the test cases now!
@nessita The tests were failing because the implementation of `reprlib` differed between Python 3.11 and 3.10, there was no way to customize the fillvalue in Python 3.10 reprlib. So I...
@nessita The only difference is we can't provide fillvalues to the `reprlib` meaning, In 3.11 We get something like `[1, 2, 3, 4,.... ]` But in 3.10 it's always `[1,...