GTK+ Vte.Terminal().fork_command_full removed?

前端 未结 2 1744
自闭症患者
自闭症患者 2021-01-14 08:38

I noticed this last week. All my code on ubuntu 15.04 was working fine using

Vte.Terminal().fork_command_full

Also this document

相关标签:
2条回答
  • 2021-01-14 09:16

    Update: This answer is now deprecated. Please see the answer by @Maximus instead.


    The function call for the C API has been renamed from

    vte_terminal_fork_command_full ()
    

    to

    vte_terminal_spawn_sync ()
    

    since VTE 0.38.

    As a result, the corresponding Python function has been renamed from fork_command_full() to spawn_sync().

    0 讨论(0)
  • 2021-01-14 09:23

    The function has been renamed from

    vte_terminal_spawn_sync()
    

    to

    vte_terminal_spawn_async()
    

    Since version VTE 0.48

    0 讨论(0)
提交回复
热议问题