From c2d430551d355245c74e8b30ca4796e772f42275 Mon Sep 17 00:00:00 2001 From: Johan Dahlin Date: Mon, 19 Jul 2004 11:29:13 +0000 Subject: Fix, a window is really WITHDRAWN if it's not SHOWN and not ICONIFIED... * tests/enum.py (EnumTest.testWindowGetState): Fix, a window is really WITHDRAWN if it's not SHOWN and not ICONIFIED... * tests/common.py: Add .. and ../gobject when distcheck isn't ran * gobject/pygenum.c: Use a dict instead of a tuple for __enum_values__, so we can handle negative enum values (eg: GDK_NOTHING) * gobject/pyflags.c: Ditto for __flag_values__ * gobject/pygparamspec.c (pyg_param_spec_getattr): reference count fixing --- tests/common.py | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'tests/common.py') diff --git a/tests/common.py b/tests/common.py index b5eb774..adf4bcc 100644 --- a/tests/common.py +++ b/tests/common.py @@ -1,3 +1,10 @@ +import os +import sys + +if not os.environ.has_key('DIST_CHECK'): + sys.path.insert(0, '..') + sys.path.insert(0, '../gobject') + import ltihooks import gobject -- cgit