From feddf77ad200ebf2f67b5c4f2fa670a58814229a Mon Sep 17 00:00:00 2001 From: Just van Rossum Date: Fri, 13 Dec 2002 15:14:22 +0000 Subject: another wrong assumption fixed --- Mac/Tools/IDE/PyBrowser.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Mac/Tools/IDE/PyBrowser.py b/Mac/Tools/IDE/PyBrowser.py index 6a63fd0..d81c46f 100644 --- a/Mac/Tools/IDE/PyBrowser.py +++ b/Mac/Tools/IDE/PyBrowser.py @@ -585,9 +585,8 @@ def unpack_other(object, indent = 0): return pack_items(items, indent) def pack_items(items, indent = 0): - items = map(lambda (k, v), type = type, simp = SIMPLE_TYPES, indent = indent: - (k, v, not type(v) in simp, indent), - items) + items = [(k, v, not isinstance(v, SIMPLE_TYPES), indent) + for k, v in items] return tuple_caselesssort(items) def caselesssort(alist): -- cgit v0.12 d='header'> cgit logo index : Qt.git
Qt s a cross-platform application framework that is used for developing application software that can be run on various software and hardware platforms with little or no change in the underlying codebase, while still being a native application with native capabilities and speed.
summaryrefslogtreecommitdiffstats
path: root/examples/declarative/cppextensions/proxyviewer/proxyviewer.qrc
blob: 17e9301471e8e1f557445954216e3e4e2f7b8308 (plain)
1
2
3
4
5
<!DOCTYPE RCC><RCC version="1.0">
<qresource>
    <file>view.qml</file>
</qresource>
</RCC>