Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
E
erp5_rtl_support
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Romain Courteaud
erp5_rtl_support
Commits
c6f33be3
Commit
c6f33be3
authored
Aug 16, 2013
by
Kazuhiko Shiozaki
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix a bug where TypeError is raised when name_list is an empty tuple.
parent
5d35b4b0
Changes
1
Show 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
:
...
...
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