SourceForge logo
SourceForge logo
Menu

matplotlib-checkins — Commit notification. DO NOT POST to this list, just subscribe to it.

You can subscribe to this list here.

2007 Jan
Feb
Mar
Apr
May
Jun
Jul
(115)
Aug
(120)
Sep
(137)
Oct
(170)
Nov
(461)
Dec
(263)
2008 Jan
(120)
Feb
(74)
Mar
(35)
Apr
(74)
May
(245)
Jun
(356)
Jul
(240)
Aug
(115)
Sep
(78)
Oct
(225)
Nov
(98)
Dec
(271)
2009 Jan
(132)
Feb
(84)
Mar
(74)
Apr
(56)
May
(90)
Jun
(79)
Jul
(83)
Aug
(296)
Sep
(214)
Oct
(76)
Nov
(82)
Dec
(66)
2010 Jan
(46)
Feb
(58)
Mar
(51)
Apr
(77)
May
(58)
Jun
(126)
Jul
(128)
Aug
(64)
Sep
(50)
Oct
(44)
Nov
(48)
Dec
(54)
2011 Jan
(68)
Feb
(52)
Mar
Apr
May
Jun
Jul
Aug
Sep
Oct
Nov
Dec
(1)
2018 Jan
Feb
Mar
Apr
May
(1)
Jun
Jul
Aug
Sep
Oct
Nov
Dec
S M T W T F S
1
(6)
2
(17)
3
(11)
4
(12)
5
(16)
6
(6)
7
(5)
8
(8)
9
(24)
10
(15)
11
(12)
12
(22)
13
(30)
14
(16)
15
(6)
16
(15)
17
(20)
18
(4)
19
(11)
20
(16)
21
(2)
22
(17)
23
(16)
24
(18)
25
(4)
26
(9)
27
(12)
28
(2)
29
30
(4)





Showing 4 results of 4

From: <ds...@us...> - 2008年06月30日 23:14:47
Revision: 5701
 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=5701&view=rev
Author: dsdale
Date: 2008年06月30日 16:14:42 -0700 (2008年6月30日)
Log Message:
-----------
another attempt to fix TextWithDash
Modified Paths:
--------------
 trunk/matplotlib/CHANGELOG
 trunk/matplotlib/lib/matplotlib/text.py
Modified: trunk/matplotlib/CHANGELOG
===================================================================
--- trunk/matplotlib/CHANGELOG	2008年06月30日 13:24:13 UTC (rev 5700)
+++ trunk/matplotlib/CHANGELOG	2008年06月30日 23:14:42 UTC (rev 5701)
@@ -1,3 +1,5 @@
+2008年06月30日 Another attempt to fix TextWithDash - DSD
+
 2008年06月30日 Removed Qt4 NavigationToolbar2.destroy -- it appears to 
 have been unnecessary and caused a bug reported by P. 
 Raybaut - DSD 
Modified: trunk/matplotlib/lib/matplotlib/text.py
===================================================================
--- trunk/matplotlib/lib/matplotlib/text.py	2008年06月30日 13:24:13 UTC (rev 5700)
+++ trunk/matplotlib/lib/matplotlib/text.py	2008年06月30日 23:14:42 UTC (rev 5701)
@@ -298,7 +298,12 @@
 
 bbox, info = self._get_layout(renderer)
 trans = self.get_transform()
- posx, posy = self.get_position()
+
+ # don't use self.get_position here, which refers to text position
+ # in Text, and dash position in TextWithDash:
+ posx = float(self.convert_xunits(self._x))
+ posy = float(self.convert_yunits(self._y))
+
 posx, posy = trans.transform_point((posx, posy))
 canvasw, canvash = renderer.get_canvas_width_height()
 
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
From: <ds...@us...> - 2008年06月30日 13:24:26
Revision: 5700
 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=5700&view=rev
Author: dsdale
Date: 2008年06月30日 06:24:13 -0700 (2008年6月30日)
Log Message:
-----------
removed Qt4's NavigationToolbar2.destroy method
Modified Paths:
--------------
 branches/v0_91_maint/CHANGELOG
 branches/v0_91_maint/lib/matplotlib/backends/backend_qt4.py
Modified: branches/v0_91_maint/CHANGELOG
===================================================================
--- branches/v0_91_maint/CHANGELOG	2008年06月30日 13:21:19 UTC (rev 5699)
+++ branches/v0_91_maint/CHANGELOG	2008年06月30日 13:24:13 UTC (rev 5700)
@@ -1,3 +1,7 @@
+2008年06月30日 Removed Qt4 NavigationToolbar2.destroy -- it appears to
+ have been unnecessary and caused a bug reported by P.
+ Raybaut - DSD
+
 2008年06月26日 Fix mathtext bug for expressions like $x_{\leftarrow}$ - MGD
 
 2008年06月26日 Fix direction of horizontal/vertical hatches - MGD
Modified: branches/v0_91_maint/lib/matplotlib/backends/backend_qt4.py
===================================================================
--- branches/v0_91_maint/lib/matplotlib/backends/backend_qt4.py	2008年06月30日 13:21:19 UTC (rev 5699)
+++ branches/v0_91_maint/lib/matplotlib/backends/backend_qt4.py	2008年06月30日 13:24:13 UTC (rev 5700)
@@ -340,13 +340,6 @@
 # reference holder for subplots_adjust window
 self.adj_window = None
 
- def destroy( self ):
- for text, tooltip_text, image_file, callback in self.toolitems:
- if text is not None:
- QtCore.QObject.disconnect( self.buttons[ text ],
- QtCore.SIGNAL( 'clicked()' ),
- getattr( self, callback ) )
-
 def dynamic_update( self ):
 self.canvas.draw()
 
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
From: <ds...@us...> - 2008年06月30日 13:21:30
Revision: 5699
 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=5699&view=rev
Author: dsdale
Date: 2008年06月30日 06:21:19 -0700 (2008年6月30日)
Log Message:
-----------
removed Qt4's NavigationToolbar2.destroy method
Modified Paths:
--------------
 trunk/matplotlib/CHANGELOG
 trunk/matplotlib/lib/matplotlib/backends/backend_qt4.py
Modified: trunk/matplotlib/CHANGELOG
===================================================================
--- trunk/matplotlib/CHANGELOG	2008年06月30日 12:13:55 UTC (rev 5698)
+++ trunk/matplotlib/CHANGELOG	2008年06月30日 13:21:19 UTC (rev 5699)
@@ -1,3 +1,7 @@
+2008年06月30日 Removed Qt4 NavigationToolbar2.destroy -- it appears to 
+ have been unnecessary and caused a bug reported by P. 
+ Raybaut - DSD 
+
 2008年06月27日 Fixed tick positioning bug - MM
 
 2008年06月27日 Fix dashed text bug where text was at the wrong end of the
Modified: trunk/matplotlib/lib/matplotlib/backends/backend_qt4.py
===================================================================
--- trunk/matplotlib/lib/matplotlib/backends/backend_qt4.py	2008年06月30日 12:13:55 UTC (rev 5698)
+++ trunk/matplotlib/lib/matplotlib/backends/backend_qt4.py	2008年06月30日 13:21:19 UTC (rev 5699)
@@ -311,13 +311,6 @@
 # reference holder for subplots_adjust window
 self.adj_window = None
 
- def destroy( self ):
- for text, tooltip_text, image_file, callback in self.toolitems:
- if text is not None:
- QtCore.QObject.disconnect( self.buttons[ text ],
- QtCore.SIGNAL( 'clicked()' ),
- getattr( self, callback ) )
-
 def dynamic_update( self ):
 self.canvas.draw()
 
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
From: <md...@us...> - 2008年06月30日 12:13:59
Revision: 5698
 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=5698&view=rev
Author: mdboom
Date: 2008年06月30日 05:13:55 -0700 (2008年6月30日)
Log Message:
-----------
Fixed inverse of natural log bug. (Thanks, Ryan May)
Modified Paths:
--------------
 trunk/matplotlib/lib/matplotlib/scale.py
Modified: trunk/matplotlib/lib/matplotlib/scale.py
===================================================================
--- trunk/matplotlib/lib/matplotlib/scale.py	2008年06月28日 13:50:45 UTC (rev 5697)
+++ trunk/matplotlib/lib/matplotlib/scale.py	2008年06月30日 12:13:55 UTC (rev 5698)
@@ -134,7 +134,7 @@
 return ma.power(np.e, a) / np.e
 
 def inverted(self):
- return LogScale.Log2Transform()
+ return LogScale.NaturalLogTransform()
 
 class LogTransform(Transform):
 input_dims = 1
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.

Showing 4 results of 4

Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.
Thanks for helping keep SourceForge clean.
X





Briefly describe the problem (required):
Upload screenshot of ad (required):
Select a file, or drag & drop file here.
Screenshot instructions:

Click URL instructions:
Right-click on the ad, choose "Copy Link", then paste here →
(This may not be possible with some types of ads)

More information about our ad policies

Ad destination/click URL:

AltStyle によって変換されたページ (->オリジナル) /