txdbus icon indicating copy to clipboard operation
txdbus copied to clipboard

Native Python implementation of DBus for Twisted

Results 22 txdbus issues
Sort by recently updated
recently updated
newest added

Sorry if this is stupid question, but could not `bytes` be added to the following tuple of supported types? https://github.com/cocagne/txdbus/blob/17b620d3d7a475d8efcc895cedb7e7320159ff58/txdbus/marshal.py#L525 Currently this raises `txdbus.error.MarshallingError: List, Tuple, Bytearray, or Dictionary required...

Hello, if I try to stress the dbus Interface, I get an error, too many open files. Maybe I'm doing something wrong. After 1024 requests, the server stops. I have...

For logs, crash reports and version specific workarounds it would be nice to have the "standard" `txdbus.__version__` variable. Could get it from `$ pip3 show txdbus | grep Version` but...

Fix an issue where empty dictionaries cause a "local variable k referenced before assignment" error in `sigFromPy(pobj)`.

In the [Tx DBus Tutorial](http://pythonhosted.org/txdbus/) it's described how one could send a structure using dbusOrder class variable. I would like to have convenient way of unmarshalling such structure on the...

Creating this ticket as a follow-up of a not 100% clear matter identified in https://github.com/cocagne/txdbus/pull/65#issuecomment-306827838. Facts: * DBus has several int types, singed/unsigned, from 8- to 64- bit wide. *...

Note: opening a new issue to avoid polluting the other one, which is about Python 3 after all. Over at https://github.com/cocagne/txdbus/issues/11#issuecomment-104372112, you mentioned you'd be interested in having txdbus work...

Maybe this could be done via CI, just in case any API changes, etc (I guess we'd have to make the examples a package?).

Split out from #11 I only have sketchy knowledge about dbus and stuff, haven't looked deeply enough into the `txdbus` codebase, but are the unit tests actually talk to a...

Split out from #11 The way the type checking is done in the code base problematic. Take [this](https://github.com/cocagne/txdbus/blob/master/txdbus/marshal.py#L434) line: ```python if not isinstance(var, six.string_types): raise MarshallingError('Required string. Received: ' +...