[Python-Dev] Error in PEP3118? (original) (raw)
Thomas Heller theller at ctypes.org
Fri Jan 18 09:05:02 CET 2008
- Previous message: [Python-Dev] Rationale for NamedTemporaryFile revisited [SEC=UNCLASSIFIED]
- Next message: [Python-Dev] Error in PEP3118?
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Hi Travis,
The pep contains this sample:
""" Nested array ::
struct {
int ival;
double data[16*4];
}
"""i:ival:
(16,4)d:data:
"""
"""
I think it is wrong and must be changed to the following; is this correct?
""" Nested array ::
struct {
int ival;
double data[16][4];
}
"""i:ival:
(16,4)d:data:
"""
"""
Thomas
- Previous message: [Python-Dev] Rationale for NamedTemporaryFile revisited [SEC=UNCLASSIFIED]
- Next message: [Python-Dev] Error in PEP3118?
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]