convert shebang lines: python -> python3
diff --git a/Lib/cProfile.py b/Lib/cProfile.py
index a7686ed..3e2b2ed 100755
--- a/Lib/cProfile.py
+++ b/Lib/cProfile.py
@@ -1,4 +1,4 @@
-#! /usr/bin/env python
+#! /usr/bin/env python3
 
 """Python interface for the 'lsprof' profiler.
    Compatible with the 'profile' module.