Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Revert bad changes to docs
  • Loading branch information
lysnikolaou committed Jun 21, 2020
commit ad23355bf0d821e39c980276ee1d3eeed3edad4b
17 changes: 17 additions & 0 deletions Doc/c-api/veryhigh.rst
Original file line number Diff line number Diff line change
Expand Up @@ -187,6 +187,15 @@ the same library that the Python runtime is using.
:c:func:`PyMem_Malloc` or :c:func:`PyMem_Realloc`.


.. c:function:: struct _node* PyParser_SimpleParseString(const char *str, int start)

This is a simplified interface to
:c:func:`PyParser_SimpleParseStringFlagsFilename` below, leaving *filename* set
to ``NULL`` and *flags* set to ``0``.

.. deprecated-removed:: 3.9 3.10


.. c:function:: struct _node* PyParser_SimpleParseStringFlags( const char *str, int start, int flags)

This is a simplified interface to
Expand All @@ -207,6 +216,14 @@ the same library that the Python runtime is using.
.. deprecated-removed:: 3.9 3.10


.. c:function:: struct _node* PyParser_SimpleParseFile(FILE *fp, const char *filename, int start)

This is a simplified interface to :c:func:`PyParser_SimpleParseFileFlags` below,
leaving *flags* set to ``0``.

.. deprecated-removed:: 3.9 3.10


.. c:function:: struct _node* PyParser_SimpleParseFileFlags(FILE *fp, const char *filename, int start, int flags)

Similar to :c:func:`PyParser_SimpleParseStringFlagsFilename`, but the Python
Expand Down