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
(1) |
2
(8) |
3
(2) |
4
|
5
(6) |
6
(27) |
7
(7) |
8
(5) |
9
(3) |
10
|
11
(1) |
12
|
13
(2) |
14
(9) |
15
(7) |
16
(5) |
17
(2) |
18
|
19
|
20
(2) |
21
|
22
|
23
(5) |
24
(2) |
25
(2) |
26
(4) |
27
(4) |
28
(7) |
29
(5) |
30
(6) |
31
(6) |
Revision: 8539 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=8539&view=rev Author: ryanmay Date: 2010年07月09日 18:30:07 +0000 (2010年7月09日) Log Message: ----------- Fix setting of minor ticklabels. As far as I can tell, the extra call to set_major_formatter is due to an SVN merge error from the transforms branch. Modified Paths: -------------- branches/v1_0_maint/lib/matplotlib/axis.py Modified: branches/v1_0_maint/lib/matplotlib/axis.py =================================================================== --- branches/v1_0_maint/lib/matplotlib/axis.py 2010年07月09日 18:28:47 UTC (rev 8538) +++ branches/v1_0_maint/lib/matplotlib/axis.py 2010年07月09日 18:30:07 UTC (rev 8539) @@ -1423,11 +1423,9 @@ self.set_minor_formatter(mticker.FixedFormatter(ticklabels)) ticks = self.get_minor_ticks() else: - self.set_major_formatter( mticker.FixedFormatter(ticklabels) ) + self.set_major_formatter(mticker.FixedFormatter(ticklabels)) ticks = self.get_major_ticks() - self.set_major_formatter( mticker.FixedFormatter(ticklabels) ) - ret1 = [] ret2 = [] for i, tick in enumerate(ticks): @@ -1985,5 +1983,3 @@ self.axes.dataLim.intervaly = ymin, ymax if not viewMutated: self.axes.viewLim.intervaly = ymin, ymax - - This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
Revision: 8538 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=8538&view=rev Author: ryanmay Date: 2010年07月09日 18:28:47 +0000 (2010年7月09日) Log Message: ----------- Fix setting of minor ticklabels. As far as I can tell, the extra call to set_major_formatter is due to an SVN merge error from the transforms branch. Modified Paths: -------------- trunk/matplotlib/lib/matplotlib/axis.py Modified: trunk/matplotlib/lib/matplotlib/axis.py =================================================================== --- trunk/matplotlib/lib/matplotlib/axis.py 2010年07月09日 18:21:30 UTC (rev 8537) +++ trunk/matplotlib/lib/matplotlib/axis.py 2010年07月09日 18:28:47 UTC (rev 8538) @@ -1423,11 +1423,9 @@ self.set_minor_formatter(mticker.FixedFormatter(ticklabels)) ticks = self.get_minor_ticks() else: - self.set_major_formatter( mticker.FixedFormatter(ticklabels) ) + self.set_major_formatter(mticker.FixedFormatter(ticklabels)) ticks = self.get_major_ticks() - self.set_major_formatter( mticker.FixedFormatter(ticklabels) ) - ret1 = [] ret2 = [] for i, tick in enumerate(ticks): @@ -1985,5 +1983,3 @@ self.axes.dataLim.intervaly = ymin, ymax if not viewMutated: self.axes.viewLim.intervaly = ymin, ymax - - This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
Revision: 8537 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=8537&view=rev Author: ryanmay Date: 2010年07月09日 18:21:30 +0000 (2010年7月09日) Log Message: ----------- Some basic changes that allow setup.py to work with both Python 2 and 3. Modified Paths: -------------- trunk/matplotlib/setup.py Modified: trunk/matplotlib/setup.py =================================================================== --- trunk/matplotlib/setup.py 2010年07月08日 15:59:38 UTC (rev 8536) +++ trunk/matplotlib/setup.py 2010年07月09日 18:21:30 UTC (rev 8537) @@ -76,7 +76,7 @@ ext_modules = [] -for line in file('lib/matplotlib/__init__.py').readlines(): +for line in open('lib/matplotlib/__init__.py').readlines(): if (line.startswith('__version__')): exec(line.strip()) @@ -235,7 +235,7 @@ # only add them if we need them if provide_pytz: add_pytz() - print 'adding pytz' + print_raw("adding pytz") if provide_dateutil: add_dateutil() print_raw("") @@ -251,14 +251,14 @@ # Write the default matplotlibrc file if options['backend']: rc['backend'] = options['backend'] -template = file('matplotlibrc.template').read() -file('lib/matplotlib/mpl-data/matplotlibrc', 'w').write(template%rc) +template = open('matplotlibrc.template').read() +open('lib/matplotlib/mpl-data/matplotlibrc', 'w').write(template%rc) # Write the default matplotlib.conf file -template = file('lib/matplotlib/mpl-data/matplotlib.conf.template').read() +template = open('lib/matplotlib/mpl-data/matplotlib.conf.template').read() template = template.replace("datapath = ", "#datapath = ") template = template.replace(" use = 'Agg'", " use = '%s'"%rc['backend']) -file('lib/matplotlib/mpl-data/matplotlib.conf', 'w').write(template) +open('lib/matplotlib/mpl-data/matplotlib.conf', 'w').write(template) try: additional_params # has setupegg.py provided except NameError: additional_params = {} @@ -267,8 +267,8 @@ if options['verbose']: mod.extra_compile_args.append('-DVERBOSE') -print 'pymods', py_modules -print 'packages', packages +print_raw("pymods %s" % py_modules) +print_raw("packages %s" % packages) distrib = setup(name="matplotlib", version= __version__, description = "Python plotting package", This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.