Re: Writing a blog post on the new Enum.

2013-05-14 Thread Fábio Santos
I corrected it indeed. On Tue, May 14, 2013 at 4:36 PM, Chris Angelico wrote: > On Wed, May 15, 2013 at 1:07 AM, Terry Jan Reedy wrote: >> On 5/14/2013 3:52 AM, Chris Angelico wrote: >>> >>> On Tue, May 14, 2013 at 9:40 AM, Fábio Santos >>> wrote: >> http://fabiosantoscode.blogspot.pt/2013

Re: Writing a blog post on the new Enum.

2013-05-14 Thread Chris Angelico
On Wed, May 15, 2013 at 1:07 AM, Terry Jan Reedy wrote: > On 5/14/2013 3:52 AM, Chris Angelico wrote: >> >> On Tue, May 14, 2013 at 9:40 AM, Fábio Santos >> wrote: > >>> http://fabiosantoscode.blogspot.pt/2013/05/pythons-new-enum-class.html >> >> >> class Text(unicode, Enum): >> one

Re: Writing a blog post on the new Enum.

2013-05-14 Thread Terry Jan Reedy
On 5/14/2013 3:52 AM, Chris Angelico wrote: On Tue, May 14, 2013 at 9:40 AM, Fábio Santos wrote: http://fabiosantoscode.blogspot.pt/2013/05/pythons-new-enum-class.html class Text(unicode, Enum): one = u'one' two = u'two' three = u'three' Is this supposed to

Re: Writing a blog post on the new Enum.

2013-05-14 Thread Chris Angelico
On Tue, May 14, 2013 at 9:40 AM, Fábio Santos wrote: > Well I am thus defying the law and order of this world by publishing > it on the internets! > > --- > > And here it is: > http://fabiosantoscode.blogspot.pt/2013/05/pythons-new-enum-class.html class Text(unicode, Enum): one = u'on

Re: Writing a blog post on the new Enum.

2013-05-13 Thread Ethan Furman
On 05/13/2013 02:44 PM, Fábio Santos wrote: I have followed the process of the new PEP closely, and as such I know that there is a repository containing the reference implementation, a link to which was posted on the python-dev list. Is it okay to link to this repository in my new blog post about

Re: Writing a blog post on the new Enum.

2013-05-13 Thread Fábio Santos
On Tue, May 14, 2013 at 12:09 AM, Ethan Furman wrote: > I just checked my settings there, and it looks like you're okay since the > folks reading your blog would just be downloading, not logging and directly > manipulating the repository. > > -- > ~Ethan~ Okay, so I'm good. I'll go ahead and pub

Re: Writing a blog post on the new Enum.

2013-05-13 Thread Mark Lawrence
On 13/05/2013 22:44, Fábio Santos wrote: I have followed the process of the new PEP closely, and as such I know that there is a repository containing the reference implementation, a link to which was posted on the python-dev list. Is it okay to link to this repository in my new blog post about th