Why would you do that? You're going to have to have a branch to deal with the -1 further down in your code anyway. Why not just deal with it when it happens:
if value not in list:
# value not found
return
index = list.index(value)
# Code to deal with the thing
You can always do: