Просмотр исходного кода

Mark all Python 2 scripts as Python 2

Nicolas Stalder 6 лет назад
Родитель
Сommit
3fb242f3ae
4 измененных файлов с 4 добавлено и 4 удалено
  1. 1 1
      scripts/prefix.py
  2. 1 1
      tests/corrupt.py
  3. 1 1
      tests/stats.py
  4. 1 1
      tests/test.py

+ 1 - 1
scripts/prefix.py

@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python2
 
 # This script replaces prefixes of files, and symbols in that file.
 # Useful for creating different versions of the codebase that don't

+ 1 - 1
tests/corrupt.py

@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python2
 
 import struct
 import sys

+ 1 - 1
tests/stats.py

@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python2
 
 import struct
 import sys

+ 1 - 1
tests/test.py

@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python2
 
 import re
 import sys