Updated msys2

This commit is contained in:
gator96100 2019-08-16 02:06:21 +02:00
commit f0dc1ea8b0
13308 changed files with 689276 additions and 46605 deletions

View file

@ -1,6 +1,6 @@
import os.path
import gdb
import glib
import glib_gdb
import sys
if sys.version_info[0] >= 3:
@ -37,7 +37,7 @@ def g_type_to_name (gtype):
else:
typenode = lookup_fundamental_type (typenode)
if typenode != None:
return glib.g_quark_to_string (typenode["qname"])
return glib_gdb.g_quark_to_string (typenode["qname"])
return None
def is_g_type_instance (val):
@ -161,7 +161,7 @@ class SignalFrame(FrameDecorator):
def get_detailed_signal_from_frame(self, frame, signal):
detail = self.read_var (frame, "detail")
detail = glib.g_quark_to_string (detail)
detail = glib_gdb.g_quark_to_string (detail)
if detail is not None:
return signal + ":" + detail
else:

View file

@ -1,4 +1,4 @@
<!ELEMENT schemalist (schema|enum)* >
<!ELEMENT schemalist (schema|enum|flags)* >
<!ATTLIST schemalist gettext-domain CDATA #IMPLIED >
<!ELEMENT schema (key|child|override)* >
@ -47,7 +47,8 @@
<!-- range is only allowed for keys with numeric type -->
<!ELEMENT range EMPTY >
<!-- min and max must be parseable as values of the key type and min < max -->
<!-- min and max must be parseable as values of the key type and
min must be less than or equal to max -->
<!ATTLIST range min CDATA #REQUIRED
max CDATA #REQUIRED >