memestra icon indicating copy to clipboard operation
memestra copied to clipboard

Python checker for places where deprecated functions are called.

Results 5 memestra issues
Sort by recently updated
recently updated
newest added

Hi, I wonder how to use memestra to run through all files under a specific directory? Thanks

This prevents subtle issues when the ast changes but gast / beniget / memestra don't get updated accordingly. Fix #61

When running tests for pythons 3.8 and 3.9 *after* running tests for python 3.7 *without* the necessary changes to [`gast`](https://github.com/serge-sans-paille/gast/pull/59) and [`beniget`](https://github.com/serge-sans-paille/beniget/pull/31), both to support `NamedExpr`s, the tests pass. With...

Was trying to write an example for the blogpost and got this: ``` import deprecated @deprecated.deprecated('This function will be removed on Feb. 2100.') def some_old_function(x, y): return x + y...

I found a case where memestra doesn't work, but I suppose we want it to work: If you're importing something from init like in here: https://github.com/numpy/numpy/blob/41e254f96e8d5bd558d2edbf8b198eb4143e8b74/numpy/__init__.py#L155 for example, memestra won't...