Staging
v0.8.1
https://github.com/python/cpython
Revision 22336ddd3263c7f4cc680fdac6e12a357ce2cded authored by Mark Dickinson on 02 February 2009, 21:37:16 UTC, committed by Mark Dickinson on 02 February 2009, 21:37:16 UTC
svn+ssh://pythondev@svn.python.org/python/branches/py3k

........
  r69224 | mark.dickinson | 2009-02-02 21:29:40 +0000 (Mon, 02 Feb 2009) | 3 lines

  Issue #1717, continued: Doc fixes and other cleanup related
  to renaming of tp_compare.
........
1 parent ae0803c
Raw File
Tip revision: 22336ddd3263c7f4cc680fdac6e12a357ce2cded authored by Mark Dickinson on 02 February 2009, 21:37:16 UTC
Merged revisions 69224 via svnmerge from
Tip revision: 22336dd
pystrtod.h
#ifndef Py_STRTOD_H
#define Py_STRTOD_H

#ifdef __cplusplus
extern "C" {
#endif


PyAPI_FUNC(double) PyOS_ascii_strtod(const char *str, char **ptr);
PyAPI_FUNC(double) PyOS_ascii_atof(const char *str);
PyAPI_FUNC(char *) PyOS_ascii_formatd(char *buffer, size_t buf_len,  const char *format, double d);


#ifdef __cplusplus
}
#endif

#endif /* !Py_STRTOD_H */
back to top