Reputation: 32220
Is there any way to find when the function "_make_parser_function" was introduced in the file pandas/pandas/io/parsers.py?
I tried to search within commit history, but could not find the exact date on which this change was introduced. I guess this function was not available in older versions of pandas.
Upvotes: 0
Views: 32
Reputation: 2447
Try -L
option
# git log -L :myfunction:path/to/myfile.c
git log -L :_make_parser_function:pandas/io/parsers.py
Upvotes: 1