Python 3 C API 中的文件 I/O
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以通过旧的(新的?)方式来完成它,只需调用 io 模块。
该代码可以工作,但它不进行错误检查。 请参阅文档以获取解释。
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.
此页面声称 API 是:
不确定这是否意味着它不是可以让 Python 从文件名打开文件,但这在 C 语言中自己做应该很简单。
This page claims the API is:
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.