Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit de24e8c

Browse files
committed
Fixing [ matplotlib-Bugs-1994535 ] still missing lines on graph with svn (r 5548)
svn path=/trunk/matplotlib/; revision=5627
1 parent f252be6 commit de24e8c

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

lib/matplotlib/patches.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -596,6 +596,8 @@ def get_xy(self):
596596
return self._path.vertices
597597
def set_xy(self, vertices):
598598
self._path = Path(vertices)
599+
_get_xy = get_xy
600+
_set_xy = set_xy
599601
xy = property(
600602
get_xy, set_xy, None,
601603
"""Set/get the vertices of the polygon. This property is

0 commit comments

Comments
 (0)