Staging
v0.8.1
https://github.com/python/cpython
Revision fde0041089de2d13e7c473200fb74d3956203987 authored by Miss Islington (bot) on 18 February 2020, 03:05:14 UTC, committed by GitHub on 18 February 2020, 03:05:14 UTC

Test when find_good_parse_start should return 0.

Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
(cherry picked from commit ffda25f6b825f3dee493b6f0746266a4dd6989f0)

Co-authored-by: Cheryl Sabella <cheryl.sabella@gmail.com>
1 parent 3c57ca6
Raw File
Tip revision: fde0041089de2d13e7c473200fb74d3956203987 authored by Miss Islington (bot) on 18 February 2020, 03:05:14 UTC
bpo-39663: IDLE: Add additional tests for pyparse (GH-18536)
Tip revision: fde0041
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