GTK + Vte.Terminal (). Fork_command_full removed?

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

Vte.Terminal (). Fork_command_full

Also this documentation site also showed this feature, but not now. Has this feature been removed? If so, what is the next simplest alternative for the virtual terminal widget to work.
As this answer suggests using the above command, what is the next best way to launch this widget?

NOTE. I am using python3 for this code

+3


source to share


2 answers


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()

.

+4


source


The function has been renamed from

vte_terminal_spawn_sync()

      

to



vte_terminal_spawn_async()

      

Since VTE version 0.48

0


source







All Articles