[Python-checkins] r46757 - in python/trunk: Lib/test/test_types.py Misc/NEWS Modules/arraymodule.c Objects/bufferobject.c

Brett Cannon brett at python.org
Fri Jun 9 19:02:32 CEST 2006


No good reason.  =)  I will change it.

-Brett

On 6/8/06, Neal Norwitz <nnorwitz at gmail.com> wrote:
>
> On 6/8/06, brett.cannon <python-checkins at python.org> wrote:
> > Author: brett.cannon
> > Date: Thu Jun  8 19:00:45 2006
> > New Revision: 46757
> >
> > Modified: python/trunk/Objects/bufferobject.c
> >
> ==============================================================================
> > --- python/trunk/Objects/bufferobject.c (original)
> > +++ python/trunk/Objects/bufferobject.c Thu Jun  8 19:00:45 2006
> > @@ -15,8 +15,16 @@
> >  } PyBufferObject;
> >
> >
> > +enum buffer_t {
> > +    READBUFFER,
> > +    WRITEBUFFER,
> > +    CHARBUFFER,
> > +    ANY_BUFFER,
> > +};
>
> Why the inconsistent use of _?  My preference is for all them to have _.
>
> n
> _______________________________________________
> Python-checkins mailing list
> Python-checkins at python.org
> http://mail.python.org/mailman/listinfo/python-checkins
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://mail.python.org/pipermail/python-checkins/attachments/20060609/ff0dbf3e/attachment.html 


More information about the Python-checkins mailing list