Staging
v0.8.1
https://github.com/python/cpython
Revision 7f93f93fa68f54c1bc128d58fa17536245396de3 authored by Julien Palard on 26 November 2018, 17:16:13 UTC, committed by Miss Islington (bot) on 26 November 2018, 17:16:13 UTC


(cherry picked from commit 5719f275b7153a00a800f5481271a6fc26659c65)

Co-authored-by: Mathieu Dupuy <deronnax@users.noreply.github.com>





https://bugs.python.org/issue35255
1 parent fc4a44b
Raw File
Tip revision: 7f93f93fa68f54c1bc128d58fa17536245396de3 authored by Julien Palard on 26 November 2018, 17:16:13 UTC
[3.6] bpo-35255: Doc: Delete now useless Windows FAQ section (GH-10557) (GH-10725)
Tip revision: 7f93f93
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