Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
pykat
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
finesse
pykat
Commits
cc548da1
There was a problem fetching the pipeline summary.
Commit
cc548da1
authored
8 years ago
by
Daniel Brown
Browse files
Options
Downloads
Patches
Plain Diff
Fixing python 2 errors with isolator1 component and list copying
parent
51d0dbcd
No related branches found
No related tags found
No related merge requests found
Pipeline
#
Changes
3
Pipelines
1
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
pykat/__init__.py
+1
-1
1 addition, 1 deletion
pykat/__init__.py
pykat/components.py
+2
-1
2 additions, 1 deletion
pykat/components.py
pykat/param.py
+2
-1
2 additions, 1 deletion
pykat/param.py
with
5 additions
and
3 deletions
pykat/__init__.py
+
1
−
1
View file @
cc548da1
...
...
@@ -3,7 +3,7 @@ from __future__ import division
from
__future__
import
print_function
from
__future__
import
unicode_literals
__version__
=
"
1.0.1
3
"
__version__
=
"
1.0.1
4
"
# This flag is used to switch on the gui features in pkat at import time
USE_GUI
=
False
...
...
This diff is collapsed.
Click to expand it.
pykat/components.py
+
2
−
1
View file @
cc548da1
...
...
@@ -1068,7 +1068,8 @@ class isolator1(Component):
return
rtn
def
getQGraphicsItem
(
self
):
raise
NotImplemented
()
class
lens
(
Component
):
...
...
This diff is collapsed.
Click to expand it.
pykat/param.py
+
2
−
1
View file @
cc548da1
...
...
@@ -86,7 +86,8 @@ class putter(object):
self
.
__owner
=
weakref
.
ref
(
newOwner
)
def
clearPuts
(
self
):
for
_
in
self
.
putees
.
copy
():
import
copy
for
_
in
copy
.
copy
(
self
.
putees
):
_
.
put
(
None
)
def
register
(
self
,
toput
):
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment