typo in D-Bus spec?

Lawrence D'Oliveiro ldo at geek-central.gen.nz
Thu Feb 14 05:52:00 UTC 2019


On Wed, 13 Feb 2019 18:51:44 -1000, Felipe Gasper wrote:

> • Interface names are composed of 1 or more elements separated by a
> period ('.') character.
> 
> The first line should say “composed of 2 or more” … right?

That would seem to be right:

    >>> dbussy.validate_interface("x.", dbussy.Error())
    False
    >>> dbussy.validate_interface(".y", dbussy.Error())
    False
    >>> dbussy.validate_interface("x.y", dbussy.Error())
    True


More information about the dbus mailing list