Dmitry Makarov

Results 4 issues of Dmitry Makarov

**DISCLAIMER** I came here without deep knowledge of data-detective. Following question is purely based on the contents of the `assertions.py` file (https://github.com/Tinkoff/data-detective/blob/master/data-detective-airflow/data_detective_airflow/test_utilities/assertions.py) Function `assert_frame_equal` compares two dataframes. How? By computing...

question

Currently we don't identify inlined comments in code, all comments are just regular (not inlined) (https://github.com/t3rn0/ast-comments#notes). Difference between them is lost after the code is parsed into the tree. We...

enhancement

If the list (tuple, dict, call, ...) is written across multiple lines there can be comments to certain elements of the list: ``` source = [ # c1 a, b,...

bug

It seems that in Python3.14 it's no longer possible to pass a tree object containing a `Comment` node to `compile`. ``` # sys.version_info < (3, 14) - ok # sys.version_info...