Python 3 C API 中的文件 I/O

发布于 2024-07-21 16:27:47 字数 328 浏览 7 评论 0原文

Python 3.0 中的 C API 已更改(弃用)文件对象的许多函数。

之前,在 2.X 中,你可以用来

PyObject* PyFile_FromString(char *filename, char *mode)

创建一个 Python 文件对象,例如:

PyObject *myFile = PyFile_FromString("test.txt", "r");

...但这样的函数在 Python 3.0 中不再存在。 Python 3.0 相当于这样的调用是什么?

The C API in Python 3.0 has changed (deprecated) many of the functions for File Objects.

Before, in 2.X, you could use

PyObject* PyFile_FromString(char *filename, char *mode)

to create a Python file object, e.g:

PyObject *myFile = PyFile_FromString("test.txt", "r");

...but such function no longer exists in Python 3.0.
What would be the Python 3.0 equivalent to such call?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

内心激荡 2024-07-28 16:27:48

您可以通过旧的(新的?)方式来完成它,只需调用 io 模块。

该代码可以工作,但它不进行错误检查。 请参阅文档以获取解释。

PyObject *ioMod, *openedFile;

PyGILState_STATE gilState = PyGILState_Ensure();

ioMod = PyImport_ImportModule("io");

openedFile = PyObject_CallMethod(ioMod, "open", "ss", "foo.txt", "wb");
Py_DECREF(ioMod);

PyObject_CallMethod(openedFile, "write", "y", "Written from Python C API!\n");
PyObject_CallMethod(openedFile, "flush", NULL);
PyObject_CallMethod(openedFile, "close", NULL);
Py_DECREF(openedFile);

PyGILState_Release(gilState);
Py_Finalize();

You can do it the old(new?)-fashioned way, by just calling the io module.

This code works, but it does no error checking. See the docs for explanation.

PyObject *ioMod, *openedFile;

PyGILState_STATE gilState = PyGILState_Ensure();

ioMod = PyImport_ImportModule("io");

openedFile = PyObject_CallMethod(ioMod, "open", "ss", "foo.txt", "wb");
Py_DECREF(ioMod);

PyObject_CallMethod(openedFile, "write", "y", "Written from Python C API!\n");
PyObject_CallMethod(openedFile, "flush", NULL);
PyObject_CallMethod(openedFile, "close", NULL);
Py_DECREF(openedFile);

PyGILState_Release(gilState);
Py_Finalize();
恏ㄋ傷疤忘ㄋ疼 2024-07-28 16:27:48

此页面声称 API 是:

PyFile_FromFd(int fd, char *name, char *mode, int buffering, char *encoding, char *newline, int closefd);

不确定这是否意味着它不是可以让 Python 从文件名打开文件,但这在 C 语言中自己做应该很简单。

This page claims the API is:

PyFile_FromFd(int fd, char *name, char *mode, int buffering, char *encoding, char *newline, int closefd);

Not sure if that means it's not possible to have Python open the file from the filename, but that should be trivial to do yourself, in C.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文