From 5a25fcd585f379476c073941123476165bf69d2b Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Wed, 12 Sep 2007 18:10:56 +0000 Subject: [PATCH] Fix #1139: PyFile_Encoding really is PyFile_SetEncoding. --- Doc/c-api/concrete.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/c-api/concrete.rst b/Doc/c-api/concrete.rst index a0fd6926d8..209f3e6459 100644 --- a/Doc/c-api/concrete.rst +++ b/Doc/c-api/concrete.rst @@ -2505,7 +2505,7 @@ change in future releases of Python. immediately after file object creation. -.. cfunction:: int PyFile_Encoding(PyFileObject *p, char *enc) +.. cfunction:: int PyFile_SetEncoding(PyFileObject *p, const char *enc) Set the file's encoding for Unicode output to *enc*. Return 1 on success and 0 on failure. -- 2.50.1