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: PyDict_SetItemString mentions PyString_FromString which does not exist
Type: Stage:
Components: Documentation Versions: Python 3.0, Python 3.1
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: georg.brandl Nosy List: benjamin.peterson, georg.brandl, stutzbach
Priority: normal Keywords:

Created on 2009-03-23 21:38 by stutzbach, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (2)
msg84041 - (view) Author: Daniel Stutzbach (stutzbach) (Python committer) Date: 2009-03-23 21:38
The documentation for PyDict_SetItemString contains the text "The key
object is created using PyString_FromString(key)".  However,
PyString_FromString has been removed in Python 3.

Perhaps it should read PyUnicode_FromString?
msg84043 - (view) Author: Benjamin Peterson (benjamin.peterson) * (Python committer) Date: 2009-03-23 21:52
Fixed in r70556.
History
Date User Action Args
2022-04-11 14:56:46adminsetgithub: 49796
2009-03-23 21:52:15benjamin.petersonsetstatus: open -> closed

nosy: + benjamin.peterson
messages: + msg84043

resolution: fixed
2009-03-23 21:38:14stutzbachcreate