Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 5f67834

Browse files
author
denfromufa
authored
Update readme.html
1 parent 7e1e489 commit 5f67834

File tree

1 file changed

+10
-7
lines changed

1 file changed

+10
-7
lines changed

readme.html

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ <h1>Python for .NET</h1>
115115
<li><a href="#exceptions">Exception Handling</a></li>
116116
<li><a href="#arrays">Using Arrays</a></li>
117117
<li><a href="#collections">Using Collections</a></li>
118-
<li><a href="#com">COM Components</a></li>
118+
<li><a href="#com">COM Componefnts</a></li>
119119
<li><a href="#types">Type Conversion</a></li>
120120
<li><a href="#embedding">Embedding Python</a></li>
121121
<li><a href="#license">License</a></li>
@@ -577,12 +577,15 @@ <h2>Embedding Python</h2>
577577
</p>
578578
<p> The Python runtime assembly defines a number of public classes
579579
that provide a subset of the functionality provided by the Python
580-
C API.
580+
C-API.
581581
</p>
582-
<p> These classes include PyObject, PyList, PyDict, etc. The source
583-
and the unit tests are currently the only API documentation.. The
584-
rhythym is very similar to using Python C++ wrapper solutions such
585-
as CXX.
582+
<p> These classes include PyObject, PyList, PyDict, PyTuple, etc.
583+
You can review the nPython.exe source code in in "Console.csproj" project
584+
for example of embedding CPython in console .NET app.
585+
Please refer to this README GitHub page for new simplified embedding API:
586+
587+
https://github.com/pythonnet/pythonnet/blob/master/README.md
588+
586589
</p>
587590
<p> At a very high level, to embed Python in your application you
588591
will need to:
@@ -607,7 +610,7 @@ <h2>Embedding Python</h2>
607610
free-threaded and uses a global interpreter lock to allow
608611
multi-threaded applications to interact safely with the Python
609612
interpreter. Much more information about this is available in the
610-
Python C API documentation on the www.python.org Website.
613+
Python C-API documentation on the www.python.org Website.
611614
</p>
612615
<p> When embedding Python in a managed application, you have to
613616
manage the GIL in just the same way you would when embedding

0 commit comments

Comments
 (0)