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
Tiago Peixoto
graph-tool
Commits
c84e5eeb
Commit
c84e5eeb
authored
Sep 11, 2015
by
Tiago Peixoto
Browse files
Fix bug in PropertyDict.keys()
parent
3d74d3c5
Changes
1
Show whitespace changes
Inline
Side-by-side
src/graph_tool/__init__.py
View file @
c84e5eeb
...
...
@@ -1414,7 +1414,7 @@ class PropertyDict():
yield
v
def
keys
(
self
):
return
[
k
[
1
]
for
k
in
self
.
properties
.
iter
keys
()
if
k
[
0
]
==
self
.
t
]
return
[
k
[
1
]
for
k
in
self
.
properties
.
keys
()
if
k
[
0
]
==
self
.
t
]
if
sys
.
version_info
<
(
3
,):
def
values
(
self
):
...
...
Write
Preview
Supports
Markdown
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