Remove deprecated signatures for SCMTool.get_file and file_exists.
Review Request #10505 — Created April 3, 2019 and submitted — Latest diff uploaded
SCMTool.get_file()
andSCMTool.file_exists()
gained the addition of
abase_commit_id
many releases ago, and when that happened we needed
to deprecate the old signature and warn if used, but continue to support
it.This change removes support for the deprecated signatures, which is long
overdue but also helps with Python 3 compatibility (as the function we
were using to check was also deprecated in Python 3).
Unit tests pass.