This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Improvement in doc of "Extending and Embedding the Python Interpreter, 5.3 Beyond Very High Level Embedding: An overview"
Type: Stage:
Components: Documentation Versions: Python 3.1, Python 3.2, Python 2.7
process
Status: closed Resolution: works for me
Dependencies: Superseder:
Assigned To: docs@python Nosy List: BreamoreBoy, blubdiebla, docs@python, georg.brandl
Priority: normal Keywords:

Created on 2009-06-03 11:27 by blubdiebla, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
interp3.c blubdiebla, 2009-06-03 11:27 Suggenstion for the c-code in 5.3
Messages (3)
msg88805 - (view) Author: Jon Blubinger (blubdiebla) Date: 2009-06-03 11:27
It should me mentioned, that the Python variable PYTHONPATH has to be
set to the directory where the multiply.py file is. This can be achieved
via export in Linux or via the PySys_SetPath() function in C (see
attachment)

It should also be mentioned that otherwise the program will have
following output:

ImportError: No module named multiply
Failed to load "multiply"
msg112293 - (view) Author: Mark Lawrence (BreamoreBoy) * Date: 2010-08-01 09:01
I don't see why this needs to be done, the 2nd paragraph of the doc is pretty explicit.

"This document assumes basic knowledge about Python. For an informal introduction to the language, see The Python Tutorial. The Python Language Reference gives a more formal definition of the language. The Python Standard Library documents the existing object types, functions and modules (both built-in and written in Python) that give the language its wide application range."
msg112297 - (view) Author: Georg Brandl (georg.brandl) * (Python committer) Date: 2010-08-01 09:13
Agreed with Mark.
History
Date User Action Args
2022-04-11 14:56:49adminsetgithub: 50437
2010-08-01 09:13:40georg.brandlsetstatus: open -> closed
resolution: works for me
messages: + msg112297
2010-08-01 09:01:50BreamoreBoysetversions: + Python 3.2, - Python 2.6, Python 2.5, Python 3.0
nosy: + BreamoreBoy, docs@python

messages: + msg112293

assignee: georg.brandl -> docs@python
2009-06-03 11:27:47blubdieblacreate