Extending Python - variable sized arrays?
Paul Rubin
phr-n2001d at nightsong.com
Tue Oct 16 18:25:56 EDT 2001
More information about the Python-list mailing list
Tue Oct 16 18:25:56 EDT 2001
- Previous message (by thread): Extending Python - variable sized arrays?
- Next message (by thread): Extending Python - variable sized arrays?
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Tim Egbert <tegbert at abl.med.utah.edu> writes: > Returning the array as a tuple using Py_BuildValue() is a problem because, > although I can create the format string dynamically, I can't create a > dymanically sized argument list. Use the apply function. apply(f, [1,2,3]) is the same as f(1,2,3).
- Previous message (by thread): Extending Python - variable sized arrays?
- Next message (by thread): Extending Python - variable sized arrays?
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
More information about the Python-list mailing list