Staging
v0.5.1
https://github.com/python/cpython
Revision 8d63db8fab539a848cf94a3d992a5549aec7bf5b authored by Lars Gustäbel on 03 March 2010, 12:19:15 UTC, committed by Lars Gustäbel on 03 March 2010, 12:19:15 UTC
................
  r78626 | lars.gustaebel | 2010-03-03 13:08:54 +0100 (Wed, 03 Mar 2010) | 10 lines

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

  ........
    r78623 | lars.gustaebel | 2010-03-03 12:55:48 +0100 (Wed, 03 Mar 2010) | 3 lines

    Issue #7232: Add support for the context manager protocol
    to the TarFile class.
  ........
................
1 parent d7494de
Raw File
Tip revision: 8d63db8fab539a848cf94a3d992a5549aec7bf5b authored by Lars Gustäbel on 03 March 2010, 12:19:15 UTC
Blocked revisions 78626 via svnmerge
Tip revision: 8d63db8
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