summaryrefslogtreecommitdiff
path: root/_dbus_bindings
Commit message (Expand)AuthorAgeFilesLines
* Remove BusImplementation, removing its remaining functionality to Connection.Simon McVittie2007-04-304-95/+76
* Implement o.fd.DBus method wrappers in Python instead of C.Simon McVittie2007-04-301-235/+0
* _dbus_bindings/module.c: Add some useful constantsSimon McVittie2007-04-271-0/+17
* Remove trailing whitespace in C sourceSimon McVittie2007-04-248-13/+13
* Add optional checks for coding style (mainly whitespace at the moment).Simon McVittie2007-04-241-0/+3
* _dbus_bindings/message.c: untabifySimon McVittie2007-04-241-30/+30
* If send_with_reply() returns TRUE but with pending call NULL, cope gracefully.Simon McVittie2007-02-211-0/+7
* Don't examine args for functions declared METH_NOARGS.Simon McVittie2007-02-211-6/+3
* Actually commit the numerous copyright-statement changes.Simon McVittie2007-02-0721-152/+152
* Audit tp_dealloc callbacks to make sure they preserve the exception state.Simon McVittie2007-02-072-1/+7
* Fix memory leak where Struct, _LongBase, _StrBase, String leaked their __dict...Simon McVittie2007-02-075-108/+309
* Close a couple of reference leaks in String (there's another somewhere, but I...Simon McVittie2007-02-051-8/+22
* Don't leak memory in Struct repr()Simon McVittie2007-02-051-2/+5
* Don't leak memory in _StringBase and _LongBase repr()Simon McVittie2007-02-051-2/+10
* Switch _IntBase back to using generic alloc/free implementation rather than h...Simon McVittie2007-02-051-1/+2
* Fix a couple of memory leaks - D-Bus signature strings, and decoded Unicode o...Simon McVittie2007-02-051-7/+11
* _dbus_bindings/pending-call.c: Fix memory leak of one Message per method call.Simon McVittie2007-01-311-2/+3
* dbus, _dbus_bindings, _dbus_glib_bindings: remove accidentally duplicated lin...Simon McVittie2007-01-2524-48/+0
* Split up Makefile.am between subdirectoriesSimon McVittie2007-01-221-0/+30
* When running without a main loop, don't make introspection fail.Simon McVittie2007-01-161-7/+17
* conn.c: fix Connection setup in absence of main loop, and error handlingSimon McVittie2007-01-161-1/+4
* Switch types from int to Py_ssize_t to be compatible with Python 2.5 on 64-bi...Simon McVittie2007-01-164-7/+20
* bytes.c, string.c: Don't mention get_object_by_unique_name in docstrings, it ...Simon McVittie2007-01-162-2/+2
* Ensure we put the right number of items in a struct or message and add test c...Simon McVittie2007-01-161-19/+36
* Add special case to serialization: objects with a __dbus_object_path__ attrib...Simon McVittie2007-01-103-24/+101
* Validate that the signature on an Array or Dict has the right number of compl...Simon McVittie2007-01-091-4/+54
* When putting a ByteArray into a variant array, serialise it as an array of va...Simon McVittie2007-01-091-1/+25
* Improve documentation of type conversion from D-Bus to PythonSimon McVittie2007-01-091-11/+12
* Improve docstrings for String and UTF8String explaining how to get UTF8String...Simon McVittie2007-01-091-0/+26
* Subscripting a ByteArray now gives 1-character strings again (for least aston...Simon McVittie2007-01-091-57/+18
* Don't require a main loop unless async calls, signal connections or exported ...Simon McVittie2007-01-094-9/+38
* Improve various type docstringsSimon McVittie2006-12-2113-127/+205
* Fix recommendation given by exception message bringing it into sync with curr...Simon McVittie2006-12-211-1/+1
* Switch to autotools and test with Python 2.5 as well as 2.4.Simon McVittie2006-12-186-23/+51
* bus.c, conn-methods.c, conn.c: Alter format of signatures in docstrings to ke...Simon McVittie2006-12-183-14/+16
* include/dbus_bindings.h: Rename to include/dbus-python.h, improve namespacing.Simon McVittie2006-12-182-3/+3
* _dbus_bindings/module.c: If Python is older than 2.4.2c1, initialize threads.Simon McVittie2006-12-141-0/+10
* message-append.c, message-get-args.c: Turn off debug messages even when debug...Simon McVittie2006-12-132-0/+2
* _dbus_bindings/conn.c: Fix broken weak reference handling, which caused a seg...Simon McVittie2006-12-131-12/+43
* conn-methods.c: Add tracingSimon McVittie2006-12-131-0/+21
* conn-internal.h: Comment weakref listSimon McVittie2006-12-131-0/+1
* bus.c: Add tracing and a couple of missed assertionsSimon McVittie2006-12-131-0/+11
* Add TRACE macro and allow debug to be turned off per fileSimon McVittie2006-12-131-1/+9
* conn.c: Correct number of varargs to debug messageSimon McVittie2006-12-121-1/+1
* conn.c: Use __func__ instead of incorrect __FUNC__Simon McVittie2006-12-121-4/+4
* _dbus_bindings/bus.c, _dbus_bindings/conn-methods.c, _dbus_bindings/conn.c: A...Simon McVittie2006-12-123-13/+55
* _dbus_bindings/dbus_bindings-internal.h: Add wrapper macro "DBG_WHEREAMI;"Simon McVittie2006-12-121-1/+3
* Add assertion macros and supporting functionsSimon McVittie2006-12-122-4/+62
* Whitespace consistency: Don't put a space between function name and parenthes...Simon McVittie2006-12-114-199/+199
* Convert generic glue, main loop integration, message append/get_args, validat...Simon McVittie2006-12-119-266/+321