Skip to content

Commit 493c90b

Browse files
authored
Merge pull request cms-sw#33813 from gartung/gartung-Utilities-StaticAnayzers-scripts
Utilities/StaticAnalyzers: use python3 in scripts
2 parents 76fb91b + f77adc9 commit 493c90b

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed

Utilities/StaticAnalyzers/scripts/callgraph.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#! /usr/bin/env python
1+
#! /usr/bin/env python3
22
from __future__ import print_function
33
import re
44
import yaml

Utilities/StaticAnalyzers/scripts/class-composition.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#! /usr/bin/env python
1+
#! /usr/bin/env python3
22
from __future__ import print_function
33
import re
44
stdcl = re.compile("^std::(.*)[^>]$")

Utilities/StaticAnalyzers/scripts/classnames-extract.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#! /usr/bin/env python
1+
#! /usr/bin/env python3
22

33
f = open('classes.txt','r')
44
g = open('classnames.txt','w')

Utilities/StaticAnalyzers/scripts/data-class-funcs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#! /usr/bin/env python
1+
#! /usr/bin/env python3
22
from __future__ import print_function
33
import re
44
datacl = re.compile("^class ")

Utilities/StaticAnalyzers/scripts/edm-global-class.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#! /usr/bin/env python
1+
#! /usr/bin/env python3
22
from __future__ import print_function
33
import re
44
datacl = re.compile("^class ")

Utilities/StaticAnalyzers/scripts/postprocess-scan-build.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/env python
1+
#!/usr/bin/env python3
22
import lxml
33
from bs4 import BeautifulSoup
44
import sys, os

Utilities/StaticAnalyzers/scripts/statics.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#! /usr/bin/env python
1+
#! /usr/bin/env python3
22
from __future__ import print_function
33
from builtins import range
44
import re

Utilities/StaticAnalyzers/scripts/symbols.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#! /usr/bin/env python
1+
#! /usr/bin/env python3
22

33
from __future__ import print_function
44
import collections

0 commit comments

Comments
 (0)