summaryrefslogtreecommitdiff
path: root/_dbus_bindings
Commit message (Expand)AuthorAgeFilesLines
* Use DBusBasicValue instead of reinventing it, if dbus is new enoughSimon McVittie2012-02-244-66/+99
* Add INTORLONG_CHECK macro so we don't have to conditionalize PyInt_CheckSimon McVittie2012-01-115-21/+11
* Use native 'int' (whatever that means) for variant_level etc.Simon McVittie2012-01-116-11/+17
* Do not allow Byte(unicode(x)) (i.e. Byte(str(x)) in Python 3)Simon McVittie2012-01-111-14/+0
* Use better names for the superclasses of Byte and ByteArraySimon McVittie2012-01-111-9/+9
* Consistently use the str type for identifier-like (ASCII) stringsSimon McVittie2012-01-115-20/+12
* DBusPythonString base class: use "native str" as base class instead of reinve...Simon McVittie2012-01-112-11/+7
* SignalMessage.__repr__: include the destination and abbreviate "interface" mo...Simon McVittie2012-01-111-2/+5
* Consistency; clean-up.Barry Warsaw2011-12-152-8/+8
* - Added back the missing PY3PORT.rst file, with updates.Barry Warsaw2011-12-151-20/+6
* This is the big one; it adds Python 3 support.Barry Warsaw2011-12-1519-191/+808
* First round of PyInt -> PyLong changes. These are only compatible with PythonBarry Warsaw2011-12-1413-73/+162
* Add error checking to dbus_py_variant_level_get() and call sites.Barry Warsaw2011-12-143-3/+27
* In preparation for Python 3 support, use the Python 2 PyBytes aliases for theBarry Warsaw2011-12-1412-115/+129
* In preparation for Python 3 support, all reprs now return unicodes, which isBarry Warsaw2011-12-145-67/+92
* Fix an inconsequential typo.Barry Warsaw2011-12-131-1/+1
* For pendantic correctness, and future Python 3 compatibility, explicitlyBarry Warsaw2011-12-132-0/+2
* Don't leak the fast_seq object.Barry Warsaw2011-12-131-1/+4
* - Add a few missing Py_TYPE() changes for Python 3 compatibility.Barry Warsaw2011-12-133-6/+6
* Additional PyObject_HEAD_INIT -> PyVarObject_HEAD_INIT changes in preparationBarry Warsaw2011-12-136-26/+13
* Use PyVarObject_HEAD_INIT to initialize typesBarry Warsaw2011-12-139-42/+21
* Adjust debug messagesBarry Warsaw2011-12-131-3/+3
* Use Py_TYPE() rather than thing->ob_type, for Python 3 portabilitySimon McVittie2011-12-1313-25/+25
* _message_iter_get_pyobject: if UTF-8 from libdbus is invalid, don't crashSimon McVittie2011-12-131-3/+7
* Don't leak UTF-8 string if serializing a unicode object fails with OOMBarry Warsaw2011-12-131-0/+1
* Remove dbus_py_tp_richcompare_by_pointer, dbus_py_tp_hash_by_pointerSimon McVittie2011-12-132-27/+0
* Remove support for Python < 2.5Simon McVittie2011-11-152-17/+0
* Bump dbus dependency to 1.4 so we can make decent error handling mandatorySimon McVittie2011-11-151-4/+0
* remove stray declaration of dbus_py_unixfd_range_checkSimon McVittie2011-05-181-1/+0
* Don't try to export DBUS_TYPE_UNIX_FD constant if not definedSimon McVittie2011-05-181-0/+2
* unixfd: improve documentationSimon McVittie2011-05-181-18/+18
* _message_iter_get_pyobject: fix whitespaceSimon McVittie2011-05-181-1/+1
* UnixFd: don't close file descriptors passed to the constructor as an intSimon McVittie2011-05-182-11/+11
* unixfd: coding styleSimon McVittie2011-05-181-9/+9
* Added Unix Fd support to dbus-pythonElvis Pfützenreuter2011-05-188-0/+283
* adjust Scott's patch to force boolean to be 0 or 1, and for coding styleSimon McVittie2011-05-171-2/+4
* Wrap dbus_connection_set_allow_anonymous()Scott Tsai2011-05-171-0/+20
* DBusPyException_ConsumeError: check whether the constructor failedSimon McVittie2010-12-021-0/+5
* fd.o #23831: make sure to ref types passed to PyModule_AddObjectSimon McVittie2010-12-0213-0/+25
* Use Py_CLEAR for greater robustnessSimon McVittie2010-12-0217-211/+200
* dbus_py_Message_append: avoid looking beyond the valid part of a signatureSimon McVittie2010-12-021-14/+22
* _message_iter_append_multi: bail out safely if a struct isn't filledSimon McVittie2010-12-021-0/+9
* Use dbus_message_iter_abandon_container to bail out, if supportedSimon McVittie2010-12-021-2/+20
* _message_iter_append_multi: assert that mode is what we expectSimon McVittie2010-12-021-0/+5
* fd.o #21831: deserialize empty ByteArray objects correctlySimon McVittie2010-11-231-0/+6
* Fix compilation in 64-bit architectureElvis Pfützenreuter2010-10-181-1/+1
* Fix signature and return value of Connection_tp_init (oops)Simon McVittie2010-02-181-1/+3
* fd.o#21172: avoid DeprecationWarning with Python 2.6Simon McVittie2010-02-181-1/+8
* fd.o #15013: expose dbus.lowlevel.MESSAGE_TYPE_SIGNAL and friendsSimon McVittie2010-02-181-2/+0
* Message.set_sender: allow org.freedesktop.DBusHuang Peng2008-09-301-1/+1