[issue5546] PyDict_SetItemString mentions PyString_FromString which does not exist

2009-03-23 Thread Benjamin Peterson
Benjamin Peterson added the comment: Fixed in r70556. -- nosy: +benjamin.peterson resolution: -> fixed status: open -> closed ___ Python tracker ___

[issue5546] PyDict_SetItemString mentions PyString_FromString which does not exist

2009-03-23 Thread Daniel Stutzbach
New submission from Daniel Stutzbach : 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? -- assignee: georg.bra