~barry/ubuntu/precise/dbus-python/python3-from-upstream

« back to all changes in this revision

Viewing changes to dbus/connection.py

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Klose
  • Date: 2007-06-26 10:28:30 UTC
  • mfrom: (1.1.5 upstream)
  • Revision ID: james.westby@ubuntu.com-20070626102830-6rh3gy4nvtt1c5z2
Tags: 0.82.0-1ubuntu1
* Merge with Debian; remaining changes:
  - Build a python-dbus-dbg package.
  - debian/rules:
    - Don't remove intermediate stamp files.
    - Don't use optimization for the debug build.
  - debian/python-dbus.postinst:
    - Also remove stale .py[co] files from 2.5 python directories

Show diffs side-by-side

added added

removed removed

Lines of Context:
228
228
class Connection(_Connection):
229
229
    """A connection to another application. In this base class there is
230
230
    assumed to be no bus daemon.
 
231
 
 
232
    :Since: 0.81.0
231
233
    """
232
234
 
233
235
    ProxyObjectClass = ProxyObject
261
263
            does not exist.
262
264
        :Raises DBusException: if the implementation has failed
263
265
            to activate the given bus name.
 
266
        :Since: 0.81.0
264
267
        """
265
268
        return bus_name
266
269
 
514
517
        are None, the implementation may request that no reply is sent.
515
518
 
516
519
        :Returns: The dbus.lowlevel.PendingCall.
 
520
        :Since: 0.81.0
517
521
        """
518
522
        if object_path == LOCAL_PATH:
519
523
            raise DBusException('Methods may not be called on the reserved '
567
571
                      signature, args, timeout=-1.0, utf8_strings=False,
568
572
                      byte_arrays=False):
569
573
        """Call the given method, synchronously.
 
574
        :Since: 0.81.0
570
575
        """
571
576
        if object_path == LOCAL_PATH:
572
577
            raise DBusException('Methods may not be called on the reserved '