Staging
v0.5.1
https://github.com/python/cpython
Revision 53f2f2eb053a8ad76f9147bbee771b615457445a authored by Eric Smith on 23 February 2010, 00:37:54 UTC, committed by Eric Smith on 23 February 2010, 00:37:54 UTC
svn+ssh://pythondev@svn.python.org/python/branches/py3k

................
  r78350 | eric.smith | 2010-02-22 19:22:24 -0500 (Mon, 22 Feb 2010) | 9 lines

  Merged revisions 78349 via svnmerge from
  svn+ssh://pythondev@svn.python.org/python/trunk

  ........
    r78349 | eric.smith | 2010-02-22 19:11:16 -0500 (Mon, 22 Feb 2010) | 1 line

    Issue #6902: Fix problem with built-in types format incorrectly with 0 padding.
  ........
................
1 parent 54e14f2
Raw File
Tip revision: 53f2f2eb053a8ad76f9147bbee771b615457445a authored by Eric Smith on 23 February 2010, 00:37:54 UTC
Merged revisions 78350 via svnmerge from
Tip revision: 53f2f2e
structseq.h

/* Tuple object interface */

#ifndef Py_STRUCTSEQ_H
#define Py_STRUCTSEQ_H
#ifdef __cplusplus
extern "C" {
#endif

typedef struct PyStructSequence_Field {
	char *name;
	char *doc;
} PyStructSequence_Field;

typedef struct PyStructSequence_Desc {
	char *name;
	char *doc;
	struct PyStructSequence_Field *fields;
	int n_in_sequence;
} PyStructSequence_Desc;

extern char* PyStructSequence_UnnamedField;

PyAPI_FUNC(void) PyStructSequence_InitType(PyTypeObject *type,
					   PyStructSequence_Desc *desc);

PyAPI_FUNC(PyObject *) PyStructSequence_New(PyTypeObject* type);

typedef struct {
	PyObject_VAR_HEAD
	PyObject *ob_item[1];
} PyStructSequence;

/* Macro, *only* to be used to fill in brand new objects */
#define PyStructSequence_SET_ITEM(op, i, v) \
	(((PyStructSequence *)(op))->ob_item[i] = v)

#define PyStructSequence_GET_ITEM(op, i) \
	(((PyStructSequence *)(op))->ob_item[i])


#ifdef __cplusplus
}
#endif
#endif /* !Py_STRUCTSEQ_H */
back to top