Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Move GObjectMeta from C to python-land | Gustavo J. A. M. Carneiro | 2006-04-11 | 5 | -99/+48 | |
| | ||||||
* | typo | Johan Dahlin | 2006-04-11 | 1 | -1/+1 | |
| | ||||||
* | Include original exception string in the raised SystemExit. | Gustavo J. A. M. Carneiro | 2006-04-11 | 2 | -1/+6 | |
| | | | | | * tests/common.py (importModule): Include original exception string in the raised SystemExit. | |||||
* | Turn gobject into a package; move _gobject to gobject._gobject and | Johan Dahlin | 2006-04-11 | 8 | -25/+70 | |
| | | | | add gobject/__init__.py. Update macros and testsuite. | |||||
* | bump to right version... | Johan Dahlin | 2006-04-11 | 1 | -2/+2 | |
| | ||||||
* | Post release version bumpPYGOBJECT_2_10_BRANCHPOINT | Johan Dahlin | 2006-04-11 | 2 | -1/+5 | |
| | ||||||
* | *** empty log message *** | Johan Dahlin | 2006-04-11 | 1 | -1/+1 | |
| | ||||||
* | add marker to ChangeLog | Johan Dahlin | 2006-04-11 | 1 | -0/+1 | |
| | ||||||
* | 2.10.1PYGOBJECT_2_10_1 | Johan Dahlin | 2006-04-11 | 2 | -0/+9 | |
| | ||||||
* | Add pygtk to CLEANFILES aswell | Johan Dahlin | 2006-04-11 | 1 | -1/+1 | |
| | ||||||
* | Add pygtk.py | Johan Dahlin | 2006-04-11 | 1 | -0/+1 | |
| | ||||||
* | reindent | Johan Dahlin | 2006-04-11 | 16 | -111/+107 | |
| | ||||||
* | reviewed by: Johan Dahlin <jdahlin@async.com.br> | Andy Wingo | 2006-04-11 | 2 | -1/+10 | |
| | | | | | | | | | | | 2006-04-11 Andy Wingo <wingo@pobox.com> reviewed by: Johan Dahlin <jdahlin@async.com.br> * gobject/gobjectmodule.c (create_property): Parse unsigned int64 constraints in param spec declaration using the "K" ParseTuple format unit, not L -- allows the full range of the datatype to be parsed. K format unit added in python 2.3. | |||||
* | unit test for #335854 | Gustavo J. A. M. Carneiro | 2006-04-01 | 2 | -1/+13 | |
| | ||||||
* | make pygtk.require faster and more robust | Gustavo J. A. M. Carneiro | 2006-04-01 | 3 | -1/+20 | |
| | ||||||
* | Bug 334318 – gtk.AboutDialog crashes with 'authors' parameter as string ↵ | Gustavo J. A. M. Carneiro | 2006-04-01 | 2 | -3/+12 | |
| | | | | instead of list | |||||
* | Install/dist dsextras.py | Johan Dahlin | 2006-03-29 | 2 | -2/+9 | |
| | ||||||
* | update a comment | Gustavo J. A. M. Carneiro | 2006-03-19 | 2 | -2/+8 | |
| | ||||||
* | whitespace | Johan Dahlin | 2006-03-15 | 1 | -13/+13 | |
| | ||||||
* | post release version bump | Johan Dahlin | 2006-03-13 | 1 | -1/+1 | |
| | ||||||
* | 2.10.0PYGOBJECT_2_10_0 | Johan Dahlin | 2006-03-13 | 3 | -2/+9 | |
| | ||||||
* | reviewed by: Johan Dahlin <jdahlin@async.com.br> | Johan Dahlin | 2006-03-09 | 3 | -12/+36 | |
| | | | | | | | | * gobject/pygenum.c: (pyg_enum_new), (pyg_enum_from_gtype), (pyg_enum_add): * gobject/pygflags.c: (pyg_flags_new), (pyg_flags_from_gtype), (pyg_flags_add): Plug a couple of leaks, fixes #334027. | |||||
* | turn off zip safe, extension modules in zip files are not supported in eggs | Johan Dahlin | 2006-01-20 | 1 | -1/+0 | |
| | ||||||
* | Add a make egg target | Johan Dahlin | 2006-01-20 | 3 | -0/+29 | |
| | | | | | | * configure.ac (export_dynamic): * Makefile.am (egg): Add a make egg target | |||||
* | post release version bump | Johan Dahlin | 2006-01-17 | 2 | -1/+5 | |
| | ||||||
* | add enum/conversion herePYGOBJECT_2_9_1 | Johan Dahlin | 2006-01-17 | 1 | -0/+2 | |
| | ||||||
* | 2.9.1 | Johan Dahlin | 2006-01-17 | 2 | -0/+11 | |
| | ||||||
* | Don't call g_value_init since the other *_to_gvalue methods expect an | Christopher Aillon | 2006-01-15 | 2 | -1/+6 | |
| | | | | | | | | 2006-01-15 Christopher Aillon <caillon@redhat.com> * gobject/gobjectmodule.c (pyg_strv_to_gvalue): Don't call g_value_init since the other *_to_gvalue methods expect an already inited GValue | |||||
* | Warn if io callback returns None: almost always this is an error | Gustavo J. A. M. Carneiro | 2006-01-14 | 2 | -0/+11 | |
| | ||||||
* | pygobject_register_class api compat. fix | Gustavo J. A. M. Carneiro | 2006-01-13 | 2 | -8/+38 | |
| | ||||||
* | ignore interfaces from .defs, discover them at runtime | Gustavo J. A. M. Carneiro | 2006-01-13 | 2 | -40/+73 | |
| | ||||||
* | Add add/remove_emission_hook and tests. Fixes #325977 | Johan Dahlin | 2006-01-13 | 3 | -1/+187 | |
| | | | | | | | | | | * gobject/gobjectmodule.c: (pyg_io_add_watch), (marshal_emission_hook), (pyg_add_emission_hook), (pyg_remove_emission_hook): * gobject/pygobject.c: * tests/test_signal.py: Add add/remove_emission_hook and tests. Fixes #325977 | |||||
* | signal accumulators | Gustavo J. A. M. Carneiro | 2006-01-11 | 4 | -4/+161 | |
| | ||||||
* | reorder more nicely information presented in docstring about signals and ↵ | Gustavo J. A. M. Carneiro | 2006-01-11 | 2 | -11/+20 | |
| | | | | properties | |||||
* | branch; version 2.9.1 | Gustavo J. A. M. Carneiro | 2006-01-11 | 2 | -1/+5 | |
| | ||||||
* | post release version bump | Johan Dahlin | 2006-01-09 | 1 | -1/+1 | |
| | ||||||
* | 2.8.0PYGOBJECT_2_8_0 | Johan Dahlin | 2006-01-09 | 3 | -3/+3 | |
| | ||||||
* | 2.9.0PYGOBJECT_2_9_0 | Johan Dahlin | 2006-01-09 | 2 | -0/+7 | |
| | ||||||
* | Make dist/distcheck work again | Johan Dahlin | 2006-01-09 | 4 | -4/+27 | |
| | ||||||
* | update | Johan Dahlin | 2006-01-09 | 1 | -0/+2 | |
| | ||||||
* | Add distutils support | Johan Dahlin | 2006-01-09 | 4 | -3/+240 | |
| | | | | | | * setup.py: Add distutils support * dsextras.py (get_m4_define): Check for configure.ac aswell. | |||||
* | Split out PyGObject from PyGTK. | Johan Dahlin | 2006-01-09 | 35 | -527/+1693 | |
| | ||||||
* | Pass GLOBAL_MACROS (in particular HAVE_PYCAIRO) to codegen DefsParser. If | Cedric Gustin | 2006-01-04 | 1 | -2/+2 | |
| | | | | | | | | | 2006-01-04 Cedric Gustin <cedric.gustin@gmail.com> * dsextras.py (Template.generate): Pass GLOBAL_MACROS (in particular HAVE_PYCAIRO) to codegen DefsParser. * setup.py: If pangocairo is enabled, add pycairo to the list of packages required to build the GTK+ module. Also set HAVE_PYCAIRO. | |||||
* | fix pygflags registration with module == NULL | Gustavo J. A. M. Carneiro | 2005-12-24 | 1 | -12/+15 | |
| | ||||||
* | We always need to free interfaces since its a null terminated array. | Johan Dahlin | 2005-11-15 | 1 | -1/+1 | |
| | | | | | * gobject/pygobject.c (pygobject_new_with_interfaces): We always need to free interfaces since its a null terminated array. | |||||
* | Remove deprecation warning | Johan Dahlin | 2005-11-13 | 1 | -13/+1 | |
| | ||||||
* | plug leak; add glade test; fix warning message | Gustavo J. A. M. Carneiro | 2005-11-09 | 4 | -5/+39 | |
| | ||||||
* | reviewed by: Johan Dahlin <jdahlin@async.com.br> | Manish Singh | 2005-11-03 | 4 | -29/+54 | |
| | | | | | | | | | | | | 2005-11-03 Manish Singh <yosh@gimp.org> reviewed by: Johan Dahlin <jdahlin@async.com.br> * gobject/gobjectmodule.c: (pyg_integer_richcompare): * gobject/pygenum.c: (pyg_enum_richcompare): * gobject/pygflags.c: (pyg_flags_richcompare): * gobject/pygobject-private.h: Prepare for Python 2.5 richcompare changes, fixes #320455. | |||||
* | Add test | Johan Dahlin | 2005-10-14 | 2 | -0/+13 | |
| | | | | | | | | | * tests/Makefile.am (tests): * tests/test_gdk.py: Add test * gtk/gdk.defs (pixmap_create_from_data) (bitmap_create_from_data): use guchar* instead of gchar, fixes #318874 (Bob Gibbs) | |||||
* | Use GIL state instead of block/unblock. Fixes crasher found by Ole AndrePYGTK_2_8_2 | Johan Dahlin | 2005-10-09 | 1 | -2/+5 | |
| | | | | | | * gobject/pygiochannel.c: (pyg_iowatch_marshal): Use GIL state instead of block/unblock. Fixes crasher found by Ole Andre Valda Ravnås. |