There are 2 scenario's where Bash performance is at least equal I believe:
- Scripting of command line utilities
- Scripts which take only a short time to execute; where starting the Python interpreter takes more time than the operation itself
That said, I usually don't really concern myself with performance of the scripting language itself. If performance is a real issue you don't script but program (possibly in Python).