Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
erp5
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Labels
Merge Requests
140
Merge Requests
140
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Jobs
Commits
Open sidebar
nexedi
erp5
Commits
d959b156
Commit
d959b156
authored
1 year ago
by
Jérome Perrin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
py2/py3: checkPythonSourceCode
parent
715ac69a
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
2 deletions
+5
-2
product/ERP5Type/Utils.py
product/ERP5Type/Utils.py
+5
-2
No files found.
product/ERP5Type/Utils.py
View file @
d959b156
...
@@ -515,8 +515,11 @@ def checkPythonSourceCode(source_code_str, portal_type=None):
...
@@ -515,8 +515,11 @@ def checkPythonSourceCode(source_code_str, portal_type=None):
message_list
=
[]
message_list
=
[]
output_file
=
StringIO
()
output_file
=
StringIO
()
try
:
try
:
with
tempfile
.
NamedTemporaryFile
(
prefix
=
'checkPythonSourceCode'
,
with
tempfile
.
NamedTemporaryFile
(
suffix
=
'.py'
)
as
input_file
:
prefix
=
'checkPythonSourceCode'
,
suffix
=
'.py'
,
mode
=
'w'
,
)
as
input_file
:
input_file
.
write
(
source_code_str
)
input_file
.
write
(
source_code_str
)
input_file
.
flush
()
input_file
.
flush
()
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
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