Revision: 8641
          http://matplotlib.svn.sourceforge.net/matplotlib/?rev=8641&view=rev
Author:   mdboom
Date:     2010-08-17 13:05:35 +0000 (Tue, 17 Aug 2010)

Log Message:
-----------
Merged revisions 8640 via svnmerge from 
https://matplotlib.svn.sf.net/svnroot/matplotlib/branches/v1_0_maint

........
  r8640 | mdboom | 2010-08-17 09:04:56 -0400 (Tue, 17 Aug 2010) | 2 lines
  
  Fix failing test_simplification:test_hatch test.
........

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-8638 
/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-8640 
/trunk/matplotlib:1-7315

Modified: trunk/matplotlib/lib/matplotlib/path.py
===================================================================
--- trunk/matplotlib/lib/matplotlib/path.py     2010-08-17 13:04:56 UTC (rev 
8640)
+++ trunk/matplotlib/lib/matplotlib/path.py     2010-08-17 13:05:35 UTC (rev 
8641)
@@ -439,7 +439,7 @@
             r = np.ones(ns2 + 1)
             r[1::2] = innerCircle
             verts = np.vstack((r*np.cos(theta), r*np.sin(theta))).transpose()
-            codes = np.empty((ns2,))
+            codes = np.empty((ns2 + 1,))
             codes[0] = cls.MOVETO
             codes[1:-1] = cls.LINETO
             codes[-1] = cls.CLOSEPOLY


This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.

------------------------------------------------------------------------------
This SF.net email is sponsored by 

Make an app they can't live without
Enter the BlackBerry Developer Challenge
http://p.sf.net/sfu/RIM-dev2dev 
_______________________________________________
Matplotlib-checkins mailing list
Matplotlib-checkins@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-checkins

Reply via email to