Staging
v0.5.1
https://github.com/python/cpython
Revision 1ec68b132e7aa54d0f5f09f3c7a098294994cd4e authored by Antoine Pitrou on 28 September 2010, 15:33:25 UTC, committed by Antoine Pitrou on 28 September 2010, 15:33:25 UTC
svn+ssh://pythondev@svn.python.org/python/branches/py3k

........
  r85066 | antoine.pitrou | 2010-09-28 17:29:16 +0200 (mar., 28 sept. 2010) | 3 lines

  Issue #9970: improve C API documentation for memoryview objects
........
1 parent e9355de
Raw File
Tip revision: 1ec68b132e7aa54d0f5f09f3c7a098294994cd4e authored by Antoine Pitrou on 28 September 2010, 15:33:25 UTC
Merged revisions 85066 via svnmerge from
Tip revision: 1ec68b1
dtoa.h
#ifndef PY_NO_SHORT_FLOAT_REPR
#ifdef __cplusplus
extern "C" {
#endif

PyAPI_FUNC(double) _Py_dg_strtod(const char *str, char **ptr);
PyAPI_FUNC(char *) _Py_dg_dtoa(double d, int mode, int ndigits,
                        int *decpt, int *sign, char **rve);
PyAPI_FUNC(void) _Py_dg_freedtoa(char *s);


#ifdef __cplusplus
}
#endif
#endif
back to top