[PATCH] D156858: Add Documentation for Execution Results Handling in Clang-REPL

QuillPusher via Phabricator via cfe-commits cfe-commits at lists.llvm.org
Fri Aug 11 03:39:36 PDT 2023


QuillPusher requested changes to this revision.
QuillPusher added a comment.
This revision now requires changes to proceed.

Added minor changes requested by Vassil



================
Comment at: clang/docs/ClangRepl.rst:296
+
+For example, the CPPYY code makes use of this feature to enable running 
+C++ within Python. It enables transporting values/information between C++ 
----------------
@Krishna-13-cyber 

Please change CPPYY to cppyy

I just saw they use small caps on their official website


================
Comment at: clang/docs/ClangRepl.rst:298
+C++ within Python. It enables transporting values/information between C++ 
+and Python.
+
----------------
@Krishna-13-cyber 

Please add the following note under this paragraph, as requested by Vassil in previous comment:

**Note:** `cppyy`_ is an automatic, run-time, Python-to-C++ bindings 
generator, for calling C++ from Python and Python from C++. It uses LLVM along 
with a C++ interpreter (e.g., Cling) to enable features like run-time 
instantiation of C++ templates, cross-inheritance, callbacks, auto-casting, 
transparent use of smart pointers, etc.

.. _cppyy: https://github.com/wlav/cppyy/


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D156858/new/

https://reviews.llvm.org/D156858



More information about the cfe-commits mailing list