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
(12) |
2
(3) |
3
(2) |
4
(15) |
5
(4) |
6
(8) |
7
(14) |
8
(10) |
9
(6) |
10
(1) |
11
(5) |
12
(7) |
13
(7) |
14
(1) |
15
|
16
(1) |
17
(2) |
18
(4) |
19
(2) |
20
|
21
(1) |
22
(2) |
23
|
24
|
25
(2) |
26
(1) |
27
|
28
(4) |
29
|
30
(1) |
31
|
|
|
|
|
|
|
Revision: 6036 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=6036&view=rev Author: mdboom Date: 2008年08月14日 13:38:01 +0000 (2008年8月14日) Log Message: ----------- Remove deprecated Numpy call. Modified Paths: -------------- trunk/matplotlib/src/_backend_gdk.c Modified: trunk/matplotlib/src/_backend_gdk.c =================================================================== --- trunk/matplotlib/src/_backend_gdk.c 2008年08月13日 18:25:26 UTC (rev 6035) +++ trunk/matplotlib/src/_backend_gdk.c 2008年08月14日 13:38:01 UTC (rev 6036) @@ -12,15 +12,6 @@ static PyTypeObject *_PyGdkPixbuf_Type; #define PyGdkPixbuf_Type (*_PyGdkPixbuf_Type) -/* Implement the equivalent to gtk.gdk.Pixbuf.get_pixels_array() - * To solve these problems with the pygtk version: - * 1) It works for Numeric, but not numarray - * 2) Its only available if pygtk is compiled with Numeric support - * Fedora 1,2,3 has PyGTK, but not Numeric and so does not have - * Pixbuf.get_pixels_array(). - * Fedora 4 does have PyGTK, Numeric and Pixbuf.get_pixels_array() - */ - static PyObject * pixbuf_get_pixels_array(PyObject *self, PyObject *args) { @@ -45,7 +36,7 @@ if (gdk_pixbuf_get_has_alpha(gdk_pixbuf)) dims[2] = 4; - array = (PyArrayObject *)PyArray_FromDimsAndData(3, dims, PyArray_UBYTE, + array = (PyArrayObject *)PyArray_SimpleNewFromData(3, dims, PyArray_UBYTE, (char *)gdk_pixbuf_get_pixels(gdk_pixbuf)); if (array == NULL) return NULL; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.