|
From: <md...@us...> - 2008-01-29 20:25:04
|
Revision: 4907
http://matplotlib.svn.sourceforge.net/matplotlib/?rev=4907&view=rev
Author: mdboom
Date: 2008-01-29 12:24:58 -0800 (Tue, 29 Jan 2008)
Log Message:
-----------
Allow updating of shared axes when calling Axes.axis() (Thanks Jorgen Stenarson)
Modified Paths:
--------------
branches/v0_91_maint/lib/matplotlib/axes.py
Modified: branches/v0_91_maint/lib/matplotlib/axes.py
===================================================================
--- branches/v0_91_maint/lib/matplotlib/axes.py 2008-01-29 20:19:27 UTC (rev 4906)
+++ branches/v0_91_maint/lib/matplotlib/axes.py 2008-01-29 20:24:58 UTC (rev 4907)
@@ -1006,7 +1006,7 @@
try: v[0]
except IndexError:
- emit = kwargs.get('emit', False)
+ emit = kwargs.get('emit', True)
xmin = kwargs.get('xmin', None)
xmax = kwargs.get('xmax', None)
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|