Within Python, what is exactly a sequence of strings? (or else Glib bug?)

假如想象 提交于 2019-12-05 12:00:18

To summarize the comments on the question:

  1. The strings shouldn't be unicode objects. If you have have Python 3 or from __future__ import unicode_literals, make byte literals via the b"foo" syntax.
  2. The envp argument seems to have diverged from its documentation. Don't provide None to it. Just don't provide that keyword/position if you aren't going to use it.
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!