Parcourir la source

Merge pull request #201 from nickray/python2-markings

Mark all Python 2 scripts as Python 2
Christopher Haster il y a 6 ans
Parent
commit
f06dc5737f
4 fichiers modifiés avec 4 ajouts et 4 suppressions
  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