~pythonregexp2.7/python/issue2636-22

« back to all changes in this revision

Viewing changes to Include/intobject.h

  • Committer: Jeffrey C. "The TimeHorse" Jacobs
  • Date: 2008-06-09 14:36:32 UTC
  • mfrom: (39021.1.402 Regexp-2.6)
  • Revision ID: darklord@timehorse.com-20080609143632-wwwkx92u1t5l7yd3
Merged in changes from the latest python source snapshot.

Show diffs side-by-side

added added

removed removed

Lines of Context:
68
68
   a leading "0" */
69
69
PyAPI_FUNC(PyObject*) _PyInt_Format(PyIntObject* v, int base, int newstyle);
70
70
 
 
71
/* Format the object based on the format_spec, as defined in PEP 3101
 
72
   (Advanced String Formatting). */
 
73
PyAPI_FUNC(PyObject *) _PyInt_FormatAdvanced(PyObject *obj,
 
74
                                             char *format_spec,
 
75
                                             Py_ssize_t format_spec_len);
 
76
 
71
77
#ifdef __cplusplus
72
78
}
73
79
#endif