Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
4552e3f9
Commit
4552e3f9
authored
Nov 02, 2012
by
Georg Brandl
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Grammar touchup.
parent
d183767c
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
12 deletions
+10
-12
Doc/extending/embedding.rst
Doc/extending/embedding.rst
+10
-12
No files found.
Doc/extending/embedding.rst
View file @
4552e3f9
...
@@ -66,18 +66,16 @@ perform some operation on a file. ::
...
@@ -66,18 +66,16 @@ perform some operation on a file. ::
return 0;
return 0;
}
}
Function :c:func:`Py_SetProgramName` should be called before
The :c:func:`Py_SetProgramName` function should be called before
:c:func:`Py_Initialize` to inform the interpreter about paths to
:c:func:`Py_Initialize` to inform the interpreter about paths to Python run-time
Python run-time libraries. Next initialize the Python interpreter
libraries. Next, the Python interpreter is initialized with
with :c:func:`Py_Initialize`, followed by the execution of a
:c:func:`Py_Initialize`, followed by the execution of a hard-coded Python script
hard-coded Python script that prints the date and time. Afterwards,
that prints the date and time. Afterwards, the :c:func:`Py_Finalize` call shuts
the :c:func:`Py_Finalize` call shuts the interpreter down, followed by
the interpreter down, followed by the end of the program. In a real program,
the end of the program. In a real program, you may want to get the
you may want to get the Python script from another source, perhaps a text-editor
Python script from another source, perhaps a text-editor routine, a
routine, a file, or a database. Getting the Python code from a file can better
file, or a database. Getting the Python code from a file can better
be done by using the :c:func:`PyRun_SimpleFile` function, which saves you the
be done by using the :c:func:`PyRun_SimpleFile` function, which saves
trouble of allocating memory space and loading the file contents.
you the trouble of allocating memory space and loading the file
contents.
.. _lower-level-embedding:
.. _lower-level-embedding:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment