Staging
v0.5.1
https://github.com/python/cpython
Revision 6cb556ffa6cbd731ef147eb89fe262a0c738f8b1 authored by Miss Islington (bot) on 28 March 2018, 13:23:32 UTC, committed by GitHub on 28 March 2018, 13:23:32 UTC
(cherry picked from commit 40a536be5337d3723285d597e2906394b26816a5)

Co-authored-by: INADA Naoki <methane@users.noreply.github.com>
1 parent b9172b9
Raw File
Tip revision: 6cb556ffa6cbd731ef147eb89fe262a0c738f8b1 authored by Miss Islington (bot) on 28 March 2018, 13:23:32 UTC
s/the the/the/ (GH-6287)
Tip revision: 6cb556f
pystrhex.h
#ifndef Py_STRHEX_H
#define Py_STRHEX_H

#ifdef __cplusplus
extern "C" {
#endif

#ifndef Py_LIMITED_API
/* Returns a str() containing the hex representation of argbuf. */
PyAPI_FUNC(PyObject*) _Py_strhex(const char* argbuf, const Py_ssize_t arglen);
/* Returns a bytes() containing the ASCII hex representation of argbuf. */
PyAPI_FUNC(PyObject*) _Py_strhex_bytes(const char* argbuf, const Py_ssize_t arglen);
#endif /* !Py_LIMITED_API */

#ifdef __cplusplus
}
#endif

#endif /* !Py_STRHEX_H */
back to top