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
Stack Of Tasks
dynamic-graph-python
Commits
8019f592
Commit
8019f592
authored
Jul 11, 2013
by
Oscar E. Ramos P
Browse files
When the object is created by copy then getName should not be called.
pointed out by OS.
parent
a0363375
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/dynamic_graph/signal_base.py
View file @
8019f592
...
...
@@ -164,8 +164,11 @@ class SignalBase (object) :
else
:
raise
RuntimeError
(
"A pointer is required to create SignalBase object."
)
self
.
name
=
self
.
getName
()
self
.
className
=
self
.
getClassName
()
if
(
obj
==
None
):
self
.
className
=
self
.
getClassName
()
self
.
name
=
self
.
getName
()
@
property
def
time
(
self
)
:
"""
...
...
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