summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* 2.14.1PYGOBJECT_2_14_1Johan Dahlin2008-01-033-1/+9
| | | | svn path=/branches/pygobject-2-14/; revision=726
* Backport from trunk:Johan Dahlin2008-01-033-11/+89
| | | | | | | | | | | | | | | 2008-01-03 Johan Dahlin <johan@gnome.org> Backport from trunk: * configure.ac: * gobject/pygmainloop.c (pyg_signal_watch_prepare): Optinally use PySignal_SetWakeupFd to avoid having to do a timeout to find out if there are any pending signals from python. Fixes #481569 svn path=/branches/pygobject-2-14/; revision=724
* If there are no items, do not attempt to iterateJohan Dahlin2007-11-021-2/+3
| | | | svn path=/trunk/; revision=712
* fix indent on ChangelogGian Mario Tagliaretti2007-10-161-1/+1
| | | | svn path=/trunk/; revision=711
* uninstalled.pc file missing 'datadir' value. Fixes #486876Gian Mario Tagliaretti2007-10-162-0/+8
| | | | svn path=/trunk/; revision=710
* post-relase bumpGustavo J. A. M. Carneiro2007-09-162-1/+5
| | | | svn path=/trunk/; revision=709
* 2.14.0PYGOBJECT_2_14_0Gustavo J. A. M. Carneiro2007-09-162-2/+5
| | | | svn path=/trunk/; revision=707
* Update NEWSGustavo J. A. M. Carneiro2007-09-162-0/+13
| | | | svn path=/trunk/; revision=706
* Remove DATADIR substitution since it now gets substituted asJohn Finlay2007-09-062-4/+6
| | | | | | | | * docs/xsl/fixxref.py.in: Remove DATADIR substitution since it now gets substituted as ${prefix}/share which doesn't work in a Python script. svn path=/trunk/; revision=705
* Update documentation and filenameJohan Dahlin2007-08-281-3/+12
| | | | svn path=/trunk/; revision=701
* Avoid exporting the metaclass, just define it where it will be used.Johan Dahlin2007-08-272-6/+6
| | | | | | | | | | 2007-08-27 Johan Dahlin <jdahlin@async.com.br> * gobject/propertyhelper.py (property.__metaclass__.__repr__): Avoid exporting the metaclass, just define it where it will be used. svn path=/trunk/; revision=700
* Refactor a bit to make sure that it is possible to use in subclasses,Johan Dahlin2007-08-273-8/+27
| | | | | | | | | | | 2007-08-27 Johan Dahlin <jdahlin@async.com.br> * gobject/__init__.py (GObjectMeta._install_properties): Refactor a bit to make sure that it is possible to use in subclasses, fixes #470718 (Marco Giusti) svn path=/trunk/; revision=699
* Bug 470230 – check for default value in boolean type is wrongGustavo J. A. M. Carneiro2007-08-273-4/+22
| | | | svn path=/trunk/; revision=698
* removed unwanted definesGustavo J. A. M. Carneiro2007-08-273-3/+6
| | | | svn path=/trunk/; revision=697
* Bug 339924 – pygobject doesn't compile on opensolarisGustavo J. A. M. Carneiro2007-08-272-1/+12
| | | | svn path=/trunk/; revision=696
* Fix compilation warning.Gustavo J. A. M. Carneiro2007-08-272-1/+6
| | | | svn path=/trunk/; revision=695
* Bug 466082 – pygobject_new_full not fully initialising PyGObject, chaos ↵Gustavo J. A. M. Carneiro2007-08-142-2/+14
| | | | | | results svn path=/trunk/; revision=694
* Add test case for one the problems reported in bug #466082Gustavo J. A. M. Carneiro2007-08-132-0/+13
| | | | svn path=/trunk/; revision=693
* Add a MAINTAINERS fileJohan Dahlin2007-08-081-0/+7
| | | | svn path=/trunk/; revision=692
* Only compile g_timeout_add_seconds for glib >= 2.13.5Gustavo J. A. M. Carneiro2007-07-082-2/+7
| | | | svn path=/trunk/; revision=691
* Wrap g_timeout_add_secondsGustavo J. A. M. Carneiro2007-07-082-0/+48
| | | | svn path=/trunk/; revision=690
* Work around the deprecation warning of BaseException.message in Python 2.6+ ↵Gustavo J. A. M. Carneiro2007-07-082-1/+24
| | | | | | affecting GError exceptions. Fixes #342948. svn path=/trunk/; revision=689
* bump versionGustavo J. A. M. Carneiro2007-07-072-1/+5
| | | | svn path=/trunk/; revision=688
* Update NEWS; 2.13.2 releasePYGOBJECT_2_13_2Gustavo J. A. M. Carneiro2007-07-072-0/+17
| | | | svn path=/trunk/; revision=686
* Bug 339924 – pygobject doesn't compile on opensolarisGustavo J. A. M. Carneiro2007-07-072-3/+11
| | | | svn path=/trunk/; revision=685
* revert last change (g_object_run_dispose)Gustavo J. A. M. Carneiro2007-07-072-16/+0
| | | | svn path=/trunk/; revision=684
* Bug 398696 – Wrap g_object_run_disposeGustavo J. A. M. Carneiro2007-07-072-0/+16
| | | | svn path=/trunk/; revision=683
* Add pointer from changelog entry to bug numberGustavo J. A. M. Carneiro2007-07-071-0/+1
| | | | svn path=/trunk/; revision=682
* Bug 342948 – Add exception handling to GOptionGustavo J. A. M. Carneiro2007-07-076-18/+107
| | | | svn path=/trunk/; revision=681
* Bug 351072 – Cannot handle signals with parameter type G_TYPE_VALUE ↵Gustavo J. A. M. Carneiro2007-07-074-2/+55
| | | | | | (marshal/unmarshal for GValue-wrapped GValue) svn path=/trunk/; revision=680
* Rename the private struct field to private_flags, because private is a C++Murray Cumming2007-07-043-3/+10
| | | | | | | | | | | 2007-07-04 Murray Cumming <murrayc@murrayc.com> * gobject/pygobject.c: (pygobject_switch_to_toggle_ref): * gobject/pygobject.h: Rename the private struct field to private_flags, because private is a C++ keyword, so this broke builds of some C++ applications, such as Glom. svn path=/trunk/; revision=679
* reviewed by: Johan DahlinSebastian Granjoux2007-07-024-1/+51
| | | | | | | | | | | | | | | 2007-07-02 Sebastian Granjoux <seb.sfo@free.fr> reviewed by: Johan Dahlin * gobject/gobjectmodule.c: (pyg_gerror_exception_check): * tests/test_gtype.py: * tests/testhelpermodule.c: (_wrap_test_gerror_exception): Fix a bug in pyg_error_exception_check, add a test, Fixes #449879 svn path=/trunk/; revision=678
* Bug 447271 – gobject has a weird bug on mac. Involves python, property and ↵Gustavo J. A. M. Carneiro2007-06-174-1/+40
| | | | | | subclassing svn path=/trunk/; revision=677
* use python-config to get python includes (Closes #448173)Sebastien Bacher2007-06-172-0/+9
| | | | | | | | | 2007-06-17 Sebastien Bacher <seb128@ubuntu.com> * m4/python.m4: use python-config to get python includes (Closes #448173) svn path=/trunk/; revision=676
* Support type=GObject or type=TYPE_OBJECT in the new properties API.Gustavo J. A. M. Carneiro2007-06-163-0/+24
| | | | svn path=/trunk/; revision=675
* OK'd by JohanYevgen Muntyan2007-06-073-2/+12
| | | | | | | | | | | | | | 2007-06-06 Yevgen Muntyan <muntyan@tamu.edu> OK'd by Johan * gobject/generate-constants.c: Return 0 from main(). * gobject/Makefile.am: use generate-constants$(EXEEXT) instead of generate-constants in the constants.py target rule. svn path=/trunk/; revision=674
* Allow running autogen.sh from outside (from Muntyan)Gustavo J. A. M. Carneiro2007-05-302-1/+8
| | | | svn path=/trunk/; revision=673
* Bug 339924 – gnome-python doesn't compile on opensolarisGustavo J. A. M. Carneiro2007-05-093-2/+12
| | | | svn path=/trunk/; revision=672
* Post-release version bump.Johan Dahlin2007-05-022-1/+5
| | | | | | * configure.ac: Post-release version bump. svn path=/trunk/; revision=671
* 2.13.1PYGOBJECT_2_13_1Johan Dahlin2007-05-022-0/+14
| | | | svn path=/trunk/; revision=669
* Use CLEANFILES and not DISTCLEANFILESJohan Dahlin2007-05-021-1/+1
| | | | svn path=/trunk/; revision=668
* Add libdir. Fixes #435132 (Luca Ferretti)Johan Dahlin2007-05-022-0/+6
| | | | | | | | * pygobject-2.0-uninstalled.pc.in: Add libdir. Fixes #435132 (Luca Ferretti) svn path=/trunk/; revision=666
* Store property values in the descriptor per instance, add a test.Johan Dahlin2007-05-023-3/+20
| | | | | | | | | | * gobject/propertyhelper.py: * tests/test_properties.py: Store property values in the descriptor per instance, add a test. svn path=/trunk/; revision=665
* Rewrap to fit in 79 charactersJohan Dahlin2007-05-011-5/+10
| | | | svn path=/trunk/; revision=664
* delete trailing whitespaceJohan Dahlin2007-05-011-28/+28
| | | | svn path=/trunk/; revision=663
* Add a property helper, fixes #338098Johan Dahlin2007-05-0111-125/+586
| | | | | | | | | | | | | | | | | * examples/properties.py: * gobject/Makefile.am: * gobject/__init__.py: * gobject/constants.py.in: * gobject/generate-constants.c: (main): * gobject/propertyhelper.py: * tests/Makefile.am: * tests/test_enum.py: * tests/test_interface.py: * tests/test_properties.py: Add a property helper, fixes #338098 svn path=/trunk/; revision=662
* fix GSlice thread init warningGustavo J. A. M. Carneiro2007-04-303-2/+8
| | | | svn path=/trunk/; revision=660
* Remove whitespace, add a bug referenceJohan Dahlin2007-04-301-3/+4
| | | | svn path=/trunk/; revision=659
* fix descriptor / toggle_ref interaction bugGustavo J. A. M. Carneiro2007-04-303-3/+26
| | | | svn path=/trunk/; revision=658
* reviewed by: Johan Dahlin <johan@gnome.org>James Livingstone2007-04-303-1/+27
| | | | | | | | | | | | | | | | 2007-04-29 James Livingstone <doclivingstone@gmail.com> reviewed by: Johan Dahlin <johan@gnome.org> * gobject/pygtype.c: (pyg_value_from_pyobject): * tests/test_signal.py: Add a missing else to avoid throwing a TypeError. Includes a test written by Ed Catmur. Fixes #374653 svn path=/trunk/; revision=657