Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Amer
erp5
Commits
c6f33be3
Commit
c6f33be3
authored
11 years ago
by
Kazuhiko Shiozaki
Browse files
Options
Download
Email Patches
Plain Diff
fix a bug where TypeError is raised when name_list is an empty tuple.
parent
5d35b4b0
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
product/ERP5/Document/Alarm.py
product/ERP5/Document/Alarm.py
+2
-2
No files found.
product/ERP5/Document/Alarm.py
View file @
c6f33be3
...
...
@@ -143,8 +143,8 @@ class Alarm(XMLObject, PeriodicityMixin):
except
AttributeError
:
# XXX guess presence of *args and **kw
name_list
=
func_code
.
co_varnames
[
func_code
.
co_argcount
:]
has_args
=
int
(
name_list
and
name_list
[
0
]
==
'args'
)
has_kw
=
int
(
len
(
name_list
)
>
has_args
and
has_args
=
bool
(
name_list
and
name_list
[
0
]
==
'args'
)
has_kw
=
bool
(
len
(
name_list
)
>
has_args
and
name_list
[
has_args
]
==
'kw'
)
name_list
=
func_code
.
co_varnames
[:
func_code
.
co_argcount
]
if
'params'
in
name_list
or
has_kw
:
...
...
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