Advertisement
z3ntu

gi webkit segmentation fault

Apr 20th, 2018
142
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.22 KB | None | 0 0
  1. import gi
  2. gi.require_version("WebKit2", "4.0")
  3. from gi.repository import WebKit2
  4.  
  5. class AppView(WebKit2.WebView):
  6.     def __init__(self):
  7.         webkit = WebKit2
  8.         webkit.WebView.__init__(self)
  9.  
  10. a = AppView()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement