From: <md...@us...> - 2010-08-16 19:59:13
|
Revision: 8639 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=8639&view=rev Author: mdboom Date: 2010-08-16 19:59:07 +0000 (Mon, 16 Aug 2010) Log Message: ----------- Merged revisions 8638 via svnmerge from https://matplotlib.svn.sf.net/svnroot/matplotlib/branches/v1_0_maint ........ r8638 | mdboom | 2010-08-16 15:58:19 -0400 (Mon, 16 Aug 2010) | 2 lines Missed detail in last commit. ........ Modified Paths: -------------- trunk/matplotlib/lib/matplotlib/path.py Property Changed: ---------------- trunk/matplotlib/ Property changes on: trunk/matplotlib ___________________________________________________________________ Modified: svnmerge-integrated - /branches/mathtex:1-7263 /branches/v0_91_maint:1-6428 /branches/v0_98_5_maint:1-7253 /branches/v1_0_maint:1-8636 /trunk/matplotlib:1-7315 + /branches/mathtex:1-7263 /branches/v0_91_maint:1-6428 /branches/v0_98_5_maint:1-7253 /branches/v1_0_maint:1-8638 /trunk/matplotlib:1-7315 Modified: trunk/matplotlib/lib/matplotlib/path.py =================================================================== --- trunk/matplotlib/lib/matplotlib/path.py 2010-08-16 19:58:19 UTC (rev 8638) +++ trunk/matplotlib/lib/matplotlib/path.py 2010-08-16 19:59:07 UTC (rev 8639) @@ -443,7 +443,7 @@ codes[0] = cls.MOVETO codes[1:-1] = cls.LINETO codes[-1] = cls.CLOSEPOLY - path = cls(verts) + path = cls(verts, codes) if numVertices <= 16: cls._unit_regular_polygons[(numVertices, innerCircle)] = path return path This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |