Python 在 AIX 上为 posix grp 函数提供 NotImplementedError
我在使用 python 提取 tar 文件时发现了这个问题,使用 tarfile.extractall 。该函数可以在其他操作系统上运行,但在 AIX 上我收到来自 getgrnam
的错误。
这是一个非常简单的测试,仅调用 getgrnam
:
Jython 2.5.2 (Release_2_5_2:7206, Mar 2 2011, 23:12:06)
[IBM J9 VM (IBM Corporation)] on java1.5.0
Type "help", "copyright", "credits" or "license" for more information.
>>>
>>> import grp
>>>
>>> file = "test.txt"
>>>
>>> grp.getgrnam(file)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/tmp/jython.jar/Lib/grp.py", line 67, in getgrnam
NotImplementedError: getgrnam unimplemented
知道为什么会发生这种情况以及解决方案是什么吗?
I found this problem while using python to extract a tar file, using tarfile.extractall
. The function works on other OS, but on AIX I get an error originating from getgrnam
.
Here is a very simple test invoking getgrnam
only:
Jython 2.5.2 (Release_2_5_2:7206, Mar 2 2011, 23:12:06)
[IBM J9 VM (IBM Corporation)] on java1.5.0
Type "help", "copyright", "credits" or "license" for more information.
>>>
>>> import grp
>>>
>>> file = "test.txt"
>>>
>>> grp.getgrnam(file)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/tmp/jython.jar/Lib/grp.py", line 67, in getgrnam
NotImplementedError: getgrnam unimplemented
Any idea why this is happening and what a solution might be?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
AIX 对于 Jython 来说并不显示为 POSIX。
AIX does not appear as POSIX to Jython.