Não é possível abrir o aplicativo rapidamente

0

Estou criando o navegador da web rapidamente. Quando estou executando meu aplicativo (executar rapidamente), eu tenho erros sobre o gtk. Sem o código do WebKit, ele pode ser executado. Desculpe pelo meu inglês.

Errors: 
/usr/lib/python2.7/dist-packages/gobject/constants.py:24: Warning: g_boxed_type_register_static: assertion 'g_type_from_name (name) == 0' failed
import gobject._gobject
/usr/lib/python2.7/dist-packages/gtk-2.0/gtk/__init__.py:40: Warning: specified class size for type 'PyGtkGenericCellRenderer' is smaller than the parent type's  'GtkCellRenderer' class size
from gtk import _gtk
/usr/lib/python2.7/dist-packages/gtk-2.0/gtk/__init__.py:40: Warning: g_type_get_qdata: assertion 'node != NULL' failed
from gtk import _gtk

Código da aplicação: link

    
por Piesek64 26.02.2014 / 19:27

1 resposta

0

Você está misturando ligações estáticas antigas e novas ligações dinâmicas.

Exemplos antigos: import gtk , import gobject , import webkit

Novos exemplos: from gi.repository import Gtk , from gi.repository import GObject , from gi.repository import WebKit

Seu código é muito simples de portar. Altere as seguintes linhas:

# Line 16
from gi.repository import WebKit

# Line 35
self.webview = WebKit.WebView()
    
por Timo 28.02.2014 / 13:04