Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: python-sdbus/python-sdbus
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 0.14.0
Choose a base ref
...
head repository: python-sdbus/python-sdbus
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
  • 14 commits
  • 18 files changed
  • 3 contributors

Commits on Apr 6, 2025

  1. Configuration menu
    Copy the full SHA
    3392530 View commit details
    Browse the repository at this point in the history
  2. Add PyPI badge to the README.md

    Shows most recent version on PyPI and links to the sdbus PyPI page.
    igo95862 committed Apr 6, 2025
    Configuration menu
    Copy the full SHA
    5f7ae7a View commit details
    Browse the repository at this point in the history

Commits on Apr 9, 2025

  1. Configuration menu
    Copy the full SHA
    7de5e6b View commit details
    Browse the repository at this point in the history
  2. Merge pull request #102 from arkq/master

    Thank you!
    igo95862 authored Apr 9, 2025
    Configuration menu
    Copy the full SHA
    aa58a8c View commit details
    Browse the repository at this point in the history

Commits on Apr 12, 2025

  1. Use METH_O method type for SdBus.call(_async)

    METH_O methods only take a single argument. It does not look like
    it constructs any tuples to make the call so it should be as fast
    as METH_FASTCALL without being only available for unlimited API
    in Python 3.9.
    
    Benchmarks did not reveal any significant impact.
    igo95862 committed Apr 12, 2025
    Configuration menu
    Copy the full SHA
    4074f95 View commit details
    Browse the repository at this point in the history
  2. test: Add blocking ping benchmark

    Calls `Ping` D-Bus method on the daemon in sequence.
    igo95862 committed Apr 12, 2025
    Configuration menu
    Copy the full SHA
    9e2950f View commit details
    Browse the repository at this point in the history

Commits on Apr 17, 2025

  1. Update URL to github repository

    The github URL has changed but it was not updated at least in some
    places, so update it now.
    
    Signed-off-by: Raphaël Mélotte <[email protected]>
    rmelotte committed Apr 17, 2025
    Configuration menu
    Copy the full SHA
    9c4c2fc View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    e4e828a View commit details
    Browse the repository at this point in the history

Commits on Apr 21, 2025

  1. Remove old unused files

    igo95862 committed Apr 21, 2025
    Configuration menu
    Copy the full SHA
    bda5dfa View commit details
    Browse the repository at this point in the history

Commits on May 11, 2025

  1. ci: Run CI weekly

    The lint tools are continuously updated which means new errors could
    be found. Check for new errors every week.
    igo95862 committed May 11, 2025
    Configuration menu
    Copy the full SHA
    eb8900a View commit details
    Browse the repository at this point in the history

Commits on May 31, 2025

  1. Fix internal exception typing

    The `add_exception_mapping` should take the exception type as
    an argument not initialized exception.
    igo95862 committed May 31, 2025
    Configuration menu
    Copy the full SHA
    9adcb23 View commit details
    Browse the repository at this point in the history
  2. Add workaround for internal override assignment typing

    Apparently there is confusion between `MethodType` and `FunctionType`
    in the older versions of mypy. Add an ignore comment to have it be
    compatible between mypy versions.
    igo95862 committed May 31, 2025
    Configuration menu
    Copy the full SHA
    b7b9c5c View commit details
    Browse the repository at this point in the history

Commits on Jun 16, 2025

  1. Iterate interfaces in the MRO reversed order

    Iterating the MRO in the reversed order will allow to add interfaces to
    the given object in a well-defined way - always starting from the base
    class. Such ordering will be compatible with adding interfaces manually
    one by one.
    arkq committed Jun 16, 2025
    Configuration menu
    Copy the full SHA
    b853432 View commit details
    Browse the repository at this point in the history

Commits on Jun 21, 2025

  1. Merge pull request #105 from arkq/reversed

    Thank you!
    igo95862 authored Jun 21, 2025
    Configuration menu
    Copy the full SHA
    c6a9d2f View commit details
    Browse the repository at this point in the history
Loading