diff options
author | Inada Naoki <songofacandy@gmail.com> | 2023-07-15 10:33:32 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-15 10:33:32 (GMT) |
commit | 2566b74b26bcce24199427acea392aed644f4b17 (patch) | |
tree | 91d2ae486db81b01c8451f26382f2eedddaf2ba1 /Include/internal | |
parent | bbf62979851283b601b2dac0073ab331ebeb3be9 (diff) | |
download | cpython-2566b74b26bcce24199427acea392aed644f4b17.zip cpython-2566b74b26bcce24199427acea392aed644f4b17.tar.gz cpython-2566b74b26bcce24199427acea392aed644f4b17.tar.bz2 |
gh-81283: compiler: remove indent from docstring (#106411)
Co-authored-by: Éric <merwok@netwok.org>
Diffstat (limited to 'Include/internal')
-rw-r--r-- | Include/internal/pycore_compile.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Include/internal/pycore_compile.h b/Include/internal/pycore_compile.h index e204d4d..beb37cc 100644 --- a/Include/internal/pycore_compile.h +++ b/Include/internal/pycore_compile.h @@ -91,6 +91,8 @@ int _PyCompile_ConstCacheMergeOne(PyObject *const_cache, PyObject **obj); /* Access compiler internals for unit testing */ +PyAPI_FUNC(PyObject*) _PyCompile_CleanDoc(PyObject *doc); + PyAPI_FUNC(PyObject*) _PyCompile_CodeGen( PyObject *ast, PyObject *filename, |