You can subscribe to this list here.
| 2003 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(1) |
Nov
(33) |
Dec
(20) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2004 |
Jan
(7) |
Feb
(44) |
Mar
(51) |
Apr
(43) |
May
(43) |
Jun
(36) |
Jul
(61) |
Aug
(44) |
Sep
(25) |
Oct
(82) |
Nov
(97) |
Dec
(47) |
| 2005 |
Jan
(77) |
Feb
(143) |
Mar
(42) |
Apr
(31) |
May
(93) |
Jun
(93) |
Jul
(35) |
Aug
(78) |
Sep
(56) |
Oct
(44) |
Nov
(72) |
Dec
(75) |
| 2006 |
Jan
(116) |
Feb
(99) |
Mar
(181) |
Apr
(171) |
May
(112) |
Jun
(86) |
Jul
(91) |
Aug
(111) |
Sep
(77) |
Oct
(72) |
Nov
(57) |
Dec
(51) |
| 2007 |
Jan
(64) |
Feb
(116) |
Mar
(70) |
Apr
(74) |
May
(53) |
Jun
(40) |
Jul
(519) |
Aug
(151) |
Sep
(132) |
Oct
(74) |
Nov
(282) |
Dec
(190) |
| 2008 |
Jan
(141) |
Feb
(67) |
Mar
(69) |
Apr
(96) |
May
(227) |
Jun
(404) |
Jul
(399) |
Aug
(96) |
Sep
(120) |
Oct
(205) |
Nov
(126) |
Dec
(261) |
| 2009 |
Jan
(136) |
Feb
(136) |
Mar
(119) |
Apr
(124) |
May
(155) |
Jun
(98) |
Jul
(136) |
Aug
(292) |
Sep
(174) |
Oct
(126) |
Nov
(126) |
Dec
(79) |
| 2010 |
Jan
(109) |
Feb
(83) |
Mar
(139) |
Apr
(91) |
May
(79) |
Jun
(164) |
Jul
(184) |
Aug
(146) |
Sep
(163) |
Oct
(128) |
Nov
(70) |
Dec
(73) |
| 2011 |
Jan
(235) |
Feb
(165) |
Mar
(147) |
Apr
(86) |
May
(74) |
Jun
(118) |
Jul
(65) |
Aug
(75) |
Sep
(162) |
Oct
(94) |
Nov
(48) |
Dec
(44) |
| 2012 |
Jan
(49) |
Feb
(40) |
Mar
(88) |
Apr
(35) |
May
(52) |
Jun
(69) |
Jul
(90) |
Aug
(123) |
Sep
(112) |
Oct
(120) |
Nov
(105) |
Dec
(116) |
| 2013 |
Jan
(76) |
Feb
(26) |
Mar
(78) |
Apr
(43) |
May
(61) |
Jun
(53) |
Jul
(147) |
Aug
(85) |
Sep
(83) |
Oct
(122) |
Nov
(18) |
Dec
(27) |
| 2014 |
Jan
(58) |
Feb
(25) |
Mar
(49) |
Apr
(17) |
May
(29) |
Jun
(39) |
Jul
(53) |
Aug
(52) |
Sep
(35) |
Oct
(47) |
Nov
(110) |
Dec
(27) |
| 2015 |
Jan
(50) |
Feb
(93) |
Mar
(96) |
Apr
(30) |
May
(55) |
Jun
(83) |
Jul
(44) |
Aug
(8) |
Sep
(5) |
Oct
|
Nov
(1) |
Dec
(1) |
| 2016 |
Jan
|
Feb
|
Mar
(1) |
Apr
|
May
|
Jun
(2) |
Jul
|
Aug
(3) |
Sep
(1) |
Oct
(3) |
Nov
|
Dec
|
| 2017 |
Jan
|
Feb
(5) |
Mar
|
Apr
|
May
|
Jun
|
Jul
(3) |
Aug
|
Sep
(7) |
Oct
|
Nov
|
Dec
|
| 2018 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(2) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| S | M | T | W | T | F | S |
|---|---|---|---|---|---|---|
|
|
1
|
2
(2) |
3
|
4
|
5
|
6
(1) |
|
7
|
8
|
9
(2) |
10
(6) |
11
(4) |
12
|
13
(3) |
|
14
(2) |
15
(7) |
16
(1) |
17
(1) |
18
(9) |
19
(2) |
20
(4) |
|
21
(6) |
22
(6) |
23
(7) |
24
(8) |
25
(5) |
26
(7) |
27
(7) |
|
28
(1) |
29
(2) |
30
(16) |
31
(3) |
|
|
|
|
From: Fernando P. <fpe...@gm...> - 2006-05-26 18:59:11
|
On 5/26/06, Eric Firing <ef...@ha...> wrote:
> OK, I agree now; let's move away from 'None' as a string. It can be
> done gradually. The brevity of 'No' is appealing, and it also works as
> the first two letters of 'None' (so it is extra-easy to support both),
> but the grammar of "color=3D'No'" is poor. 'Invisible' is still a bit
> long. 'Absent' could work. So could 'Blank', although for French and
> Spanish speakers it is perilously close to their word for white. Maybe
> 'No' really is the best compromise.
I've used this instead in the past:
class NotGiven: pass
def foo(x,y=3DNotGiven):
if y is NotGiven:
y =3D smart_default
elif y is None:
y =3D do_the_rigth_thing_for_None
...
This lets None be a valid value without the joyfully robust choice of
None and 'None' having drastically different meanings.
Just an idea..
f
|
|
From: Darren D. <dd...@co...> - 2006-05-26 18:19:10
|
On Friday 26 May 2006 14:01, Eric Firing wrote: > Christopher Barker wrote: > > Eric Firing wrote: > >> John Hunter wrote: > >>> How is it really prone to error -- I would think that if the user pass > >>> es 'None', the string, for a color arg, there aren't too many > >>> alternative meanings. > >> > >> Right. 'None' means no color--don't draw it. 'Transparent' is > >> longer, and conceptually closer to alpha=0. The only potential error > >> is typing 'None' instead of None, or the reverse. It could be > >> confusing to a new user. > > > > Or an old user. If I see 'None" in the docs, I'm going to type None. It > > seems like a really bad idea to have both 'None' and None be valid, but > > have different meanings. > > > > If you don't like 'Transparent', how about 'NoLine', "Invisible", 'No', > > etc, etc...... but please don't use 'None' > > OK, I agree now; let's move away from 'None' as a string. It can be > done gradually. The brevity of 'No' is appealing, and it also works as > the first two letters of 'None' (so it is extra-easy to support both), > but the grammar of "color='No'" is poor. Its not too bad, if in this case you recognize color as a verb instead of a noun... > 'Invisible' is still a bit > long. 'Absent' could work. So could 'Blank', although for French and > Spanish speakers it is perilously close to their word for white. Maybe > 'No' really is the best compromise. > > Eric > > > ------------------------------------------------------- > All the advantages of Linux Managed Hosting--Without the Cost and Risk! > Fully trained technicians. The highest number of Red Hat certifications in > the hosting industry. Fanatical Support. Click to learn more > http://sel.as-us.falkag.net/sel?cmd=lnk&kid=107521&bid=248729&dat=121642 > _______________________________________________ > Matplotlib-devel mailing list > Mat...@li... > https://lists.sourceforge.net/lists/listinfo/matplotlib-devel -- Darren S. Dale, Ph.D. Cornell High Energy Synchrotron Source Cornell University 200L Wilson Lab Rt. 366 & Pine Tree Road Ithaca, NY 14853 dd...@co... office: (607) 255-9894 fax: (607) 255-9001 |
|
From: Eric F. <ef...@ha...> - 2006-05-26 18:01:48
|
Christopher Barker wrote: > Eric Firing wrote: > >> John Hunter wrote: > > >>> How is it really prone to error -- I would think that if the user pass >>> es 'None', the string, for a color arg, there aren't too many >>> alternative meanings. >> >> >> Right. 'None' means no color--don't draw it. 'Transparent' is >> longer, and conceptually closer to alpha=0. The only potential error >> is typing 'None' instead of None, or the reverse. It could be >> confusing to a new user. > > > Or an old user. If I see 'None" in the docs, I'm going to type None. It > seems like a really bad idea to have both 'None' and None be valid, but > have different meanings. > > If you don't like 'Transparent', how about 'NoLine', "Invisible", 'No', > etc, etc...... but please don't use 'None' OK, I agree now; let's move away from 'None' as a string. It can be done gradually. The brevity of 'No' is appealing, and it also works as the first two letters of 'None' (so it is extra-easy to support both), but the grammar of "color='No'" is poor. 'Invisible' is still a bit long. 'Absent' could work. So could 'Blank', although for French and Spanish speakers it is perilously close to their word for white. Maybe 'No' really is the best compromise. Eric |
|
From: Christopher B. <Chr...@no...> - 2006-05-26 16:23:29
|
Eric Firing wrote:
> John Hunter wrote:
>> How is it really prone to error -- I would think that if the user pass
>> es 'None', the string, for a color arg, there aren't too many
>> alternative meanings.
>
> Right. 'None' means no color--don't draw it. 'Transparent' is longer,
> and conceptually closer to alpha=0. The only potential error is typing
> 'None' instead of None, or the reverse. It could be confusing to a new
> user.
Or an old user. If I see 'None" in the docs, I'm going to type None. It
seems like a really bad idea to have both 'None' and None be valid, but
have different meanings.
If you don't like 'Transparent', how about 'NoLine', "Invisible", 'No',
etc, etc...... but please don't use 'None'
-Chris
--
Christopher Barker, Ph.D.
Oceanographer
NOAA/OR&R/HAZMAT (206) 526-6959 voice
7600 Sand Point Way NE (206) 526-6329 fax
Seattle, WA 98115 (206) 526-6317 main reception
Chr...@no...
|
|
From: Eric F. <ef...@ha...> - 2006-05-26 03:52:35
|
John Hunter wrote:
>>>>>>"Christopher" == Christopher Barker <Chr...@no...> writes:
>
>
> Christopher> John Hunter wrote:
> >> mean "do the default". The hack workaround we use here is to
> >> set 'None' (the string) rather than None itself. Ugly, yes.
>
> Christopher> and really, really prone to error. If you need to use
> Christopher> a string, use something else, like perhaps
> Christopher> "transparent"
>
> How is it really prone to error -- I would think that if the user pass
> es 'None', the string, for a color arg, there aren't too many
> alternative meanings.
Right. 'None' means no color--don't draw it. 'Transparent' is longer,
and conceptually closer to alpha=0. The only potential error is typing
'None' instead of None, or the reverse. It could be confusing to a new
user.
>
> >> The real root of the problem is that renderer.draw_polygon(gc,
> >> rgbFace, tverts) is overloaded to support edge and face drawing
> >> in one function call.
>
> Christopher> That's actually a good thing. I like to think of a
> Christopher> polygon with a border a single object, and it can
> Christopher> dome in handy if you want to do something like draw a
> Christopher> polygon with a border that is
> Christopher> semi-transparent. drawing the fill and the stroke
> Christopher> independently doesn't work right.
[....]
>
> You may be right -- it may be a good thing -- what we need is a clear
> way to say "edge on" or "face on". One way is to figure out a way to
> do it with the color specification itself ('None' or something like
> it). Another way is to add boolean flags to the gc object...
But the gc object is at a lower level, not exposed to the user, so
something like "color='None'" or "linewidth=0" is needed in any case at
the higher levels, isn't it? Or were you thinking of adding another
kwarg to the high-level functions, that would be passed down the line
into the backend? Something like draw=face|edge|both?
Now I see the problem with linewidth=0; it solves only half the problem,
turning off the boundary rendering, but does not facilitate the reverse,
leaving the interior unfilled but drawing the boundary.
Eric
|
|
From: John H. <jdh...@ac...> - 2006-05-26 01:57:51
|
>>>>> "Christopher" == Christopher Barker <Chr...@no...> writes:
Christopher> John Hunter wrote:
>> mean "do the default". The hack workaround we use here is to
>> set 'None' (the string) rather than None itself. Ugly, yes.
Christopher> and really, really prone to error. If you need to use
Christopher> a string, use something else, like perhaps
Christopher> "transparent"
How is it really prone to error -- I would think that if the user pass
es 'None', the string, for a color arg, there aren't too many
alternative meanings.
>> The real root of the problem is that renderer.draw_polygon(gc,
>> rgbFace, tverts) is overloaded to support edge and face drawing
>> in one function call.
Christopher> That's actually a good thing. I like to think of a
Christopher> polygon with a border a single object, and it can
Christopher> dome in handy if you want to do something like draw a
Christopher> polygon with a border that is
Christopher> semi-transparent. drawing the fill and the stroke
Christopher> independently doesn't work right. I was recently
Christopher> messing around with this in Cairo, and it's a pain
Christopher> int eh *&^, but it can be done right, but it's up to
Christopher> the back-end to figure out how.
You may be right -- it may be a good thing -- what we need is a clear
way to say "edge on" or "face on". One way is to figure out a way to
do it with the color specification itself ('None' or something like
it). Another way is to add boolean flags to the gc object...
JDH
|
|
From: Christopher B. <Chr...@no...> - 2006-05-26 00:01:25
|
John Hunter wrote:
> mean "do the default". The hack workaround we use here is to set
> 'None' (the string) rather than None itself. Ugly, yes.
and really, really prone to error. If you need to use a string, use
something else, like perhaps "transparent"
> The real root of the problem is that
>
> renderer.draw_polygon(gc, rgbFace, tverts)
>
> is overloaded to support edge and face drawing in one function call.
That's actually a good thing. I like to think of a polygon with a border
a single object, and it can dome in handy if you want to do something
like draw a polygon with a border that is semi-transparent. drawing the
fill and the stroke independently doesn't work right. I was recently
messing around with this in Cairo, and it's a pain int eh *&^, but it
can be done right, but it's up to the back-end to figure out how.
-Chris
--
Christopher Barker, Ph.D.
Oceanographer
NOAA/OR&R/HAZMAT (206) 526-6959 voice
7600 Sand Point Way NE (206) 526-6329 fax
Seattle, WA 98115 (206) 526-6317 main reception
Chr...@no...
|