Python 在 AIX 上为 posix grp 函数提供 NotImplementedError

发布于 2025-01-03 01:58:50 字数 704 浏览 2 评论 0原文

我在使用 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 技术交流群。

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

发布评论

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

评论(1

温柔少女心 2025-01-10 01:58:50

AIX 对于 Jython 来说并不显示为 POSIX。

AIX does not appear as POSIX to Jython.

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