On 4/24/06, Thomas Wouters <[EMAIL PROTECTED]> wrote: > > On 4/24/06, guido.van.rossum <[email protected]> wrote: > > + new->ob_size = size; > > + if (size == 0) > + new->ob_bytes = NULL; > + else { > + new->ob_bytes = PyMem_Malloc(size); > + if (new->ob_bytes == NULL) { > + Py_DECREF(new); > + return NULL; > + } > + if (bytes != NULL) > + memcpy(new->ob_bytes, bytes, size); > > Hmmm... Should we see this as official confirmation that PEP 7 is going to > go to 4-space indents instead of tab ones, or is it just an editor > accidentily left in Google-indent mode? (I think I prefer the former ;)
The former. I thought it was already decided? Of course, only for *new* code so far, to ease merges. -- --Guido van Rossum (home page: http://www.python.org/~guido/) _______________________________________________ Python-3000 mailing list [email protected] http://mail.python.org/mailman/listinfo/python-3000 Unsubscribe: http://mail.python.org/mailman/options/python-3000/archive%40mail-archive.com
