Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Dóra Kocsis
dynare
Commits
622bfcd0
Commit
622bfcd0
authored
Jun 08, 2012
by
Houtan Bastani
Browse files
python script to compare matlab function names to their filenames, reporting those that differ
parent
08b9d1c8
Changes
1
Hide whitespace changes
Inline
Side-by-side
scripts/diffFuncNames.py
0 → 100644
View file @
622bfcd0
import
os
import
string
for
dirname
,
dirnames
,
filenames
in
os
.
walk
(
'../matlab'
):
for
filename
in
filenames
:
filename
=
string
.
strip
(
filename
)
if
filename
[
-
2
:]
!=
'.m'
or
filename
==
'msstart2.m'
or
filename
==
'msstart_setup.m'
or
filename
==
'qmc_sequence.m'
:
continue
fullfilename
=
os
.
path
.
join
(
dirname
,
filename
)
f
=
open
(
fullfilename
,
'r'
)
funcDef
=
''
inComment
=
False
while
True
:
funcDef
+=
f
.
read
(
1
)
if
funcDef
[
-
1
:]
==
'%'
:
inComment
=
True
if
inComment
:
if
funcDef
[
-
1
:]
==
'
\n
'
:
inComment
=
False
else
:
if
funcDef
[
-
1
:]
==
'('
:
break
f
.
close
()
spliteq
=
string
.
rsplit
(
funcDef
,
'='
)
if
len
(
spliteq
)
==
1
:
spliteq
=
string
.
rsplit
(
funcDef
,
'function '
)
spliteq
=
spliteq
.
pop
()
spliteq
=
string
.
strip
(
spliteq
,
'. '
)
spliteq
=
string
.
strip
(
spliteq
,
'
\n
'
)
spliteq
=
string
.
strip
(
spliteq
,
'( '
)
if
filename
[:
-
2
]
!=
spliteq
:
print
fullfilename
+
': '
+
spliteq
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment