[Python-Dev] Re: [Python-checkins] python/dist/src/Modules cStringIO.c, 2.45, 2.46 (original) (raw)
Thomas Heller theller at python.net
Fri Feb 27 05:55:59 EST 2004
- Previous message: [Python-Dev] Idea for a fast calling convention
- Next message: [Python-Dev] Re: [Python-checkins] python/dist/src/Modules cStringIO.c, 2.45, 2.46
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
rhettinger at users.sourceforge.net writes:
if (PyObjectSize(args) < 0) return NULL;
! args = PyTuplePack(1, args); ! if (args == NULL) ! return NULL; ! tmp = PyObjectCall(joiner, args, NULL); ! PyDECREF(args); UNLESS (tmp) return NULL;
There are both tabs and spaces in this code. Question: is there a convention about tabs and spaces in C code?
Thomas
- Previous message: [Python-Dev] Idea for a fast calling convention
- Next message: [Python-Dev] Re: [Python-checkins] python/dist/src/Modules cStringIO.c, 2.45, 2.46
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]