Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Sebastian Steinlechner
pykat
Commits
a8866232
Commit
a8866232
authored
Apr 10, 2015
by
Andreas Freise
Browse files
adding missing function to params.
parent
46b0c57f
Changes
1
Hide whitespace changes
Inline
Side-by-side
pykat/param.py
View file @
a8866232
...
...
@@ -92,6 +92,15 @@ class Param(putable, putter):
putter
.
__init__
(
self
,
var_name
,
isPutter
)
putable
.
__init__
(
self
,
owner
.
name
,
name
,
isPutable
)
def
_updateOwner
(
self
,
newOwner
):
"""
This updates the internal weak reference to link a parameter to who owns it.
Should only be called by the __deepcopy__ component method to ensure things
are kept up to date.
"""
del
self
.
_owner
self
.
_owner
=
weakref
.
ref
(
newOwner
)
@
property
def
canFsig
(
self
):
return
self
.
_canFsig
...
...
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