Adrián Chaves
Adrián Chaves
I agree that it deserves a place in a package that assists with code deprecation, instead of keeping a copy of it in every package where it is used. I...
Looking at GitHub stars, https://github.com/tantale/deprecated seems like the most popular package on this front, followed by https://github.com/briancurtin/deprecation and https://github.com/Borda/pyDeprecate.
Are you aware that you can escape `%` with an additional `%`: `%%`?
There is no error with `'90%% is not a format string'`.
So I take it this is no so much about the impossibility of passing a `%`, but about the wish to not have to use `%%` when no arguments are...
Shall I make up for it with documentation?
We only seem to have 1 interface in Scrapy at the moment. I’m not sure which direction we should go, have more interfaces or have none.
Some tests also fail when you run them sequentially, warnings from one test leaking to another test is a long-standing issue for us, sadly.
Instead, we need to capture and silence that warning when triggered by our own code.
I would like to first understand why it is happening in the first place, though. Maybe there is a better way.