cpython/Objects
Raymond Hettinger 8ae4689657 Simplify and speedup uses of Py_BuildValue():
* Py_BuildValue("(OOO)",a,b,c)  -->  PyTuple_Pack(3,a,b,c)
* Py_BuildValue("()",a)         -->  PyTuple_New(0)
* Py_BuildValue("O", a)         -->  Py_INCREF(a)
2003-10-12 19:09:37 +00:00
..
.cvsignore
abstract.c
boolobject.c
bufferobject.c
cellobject.c
classobject.c Simplify and speedup uses of Py_BuildValue(): 2003-10-12 19:09:37 +00:00
cobject.c
complexobject.c Simplify and speedup uses of Py_BuildValue(): 2003-10-12 19:09:37 +00:00
descrobject.c Return a bool rather than an int from proxy_has_key(). 2003-10-09 03:47:08 +00:00
dictnotes.txt
dictobject.c
enumobject.c
fileobject.c Simplify and speedup uses of Py_BuildValue(): 2003-10-12 19:09:37 +00:00
floatobject.c
frameobject.c
funcobject.c
intobject.c
iterobject.c
listobject.c
listsort.txt
longobject.c
methodobject.c
moduleobject.c
object.c
obmalloc.c
rangeobject.c
sliceobject.c SF bug #800796: Difference between hash() and __hash__() 2003-09-05 14:27:30 +00:00
stringobject.c
structseq.c
tupleobject.c Extended tuple's C API to include a new function, PyTuple_Pack() that is 2003-10-12 18:24:34 +00:00
typeobject.c Simplify and speedup uses of Py_BuildValue(): 2003-10-12 19:09:37 +00:00
unicodectype.c
unicodeobject.c Fix for SF bug [ 817156 ] invalid \U escape gives 0=length unistr. 2003-10-06 05:08:26 +00:00
unicodetype_db.h
weakrefobject.c