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: ezhangle/zerorpc-python
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: 0rpc/zerorpc-python
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Checking mergeability… Don’t worry, you can still create the pull request.
  • 10 commits
  • 14 files changed
  • 4 contributors

Commits on Jan 5, 2022

  1. try collections.abc instead of collections for Python >= 3.4

    Kill a depreciation warning by importing "collections.abc" and
    fallback to "collections" on failure in order to maintain support
    for older versions of Python.
    
    Fixes: 0rpc#231
    Signed-off-by: Cedric Hombourger <[email protected]>
    chombourger committed Jan 5, 2022
    Configuration menu
    Copy the full SHA
    c43ac74 View commit details
    Browse the repository at this point in the history
  2. Merge pull request 0rpc#246 from chombourger/issue-231

    try collections.abc instead of collections for Python >= 3.4
    bombela authored Jan 5, 2022
    Configuration menu
    Copy the full SHA
    465cf16 View commit details
    Browse the repository at this point in the history
  3. core: handle both "async" and "async_" in remote calls

    Python 3.7 made "async" a reserved keyword: this causes a syntax
    error when passing "async" as a named parameter in remote procedure
    calls. Make ClientBase.__call__() understand both "async" and
    "async_" so we don't break our binary interface with older clients.
    
    Fixes: 0rpc#239
    Signed-off-by: Cedric Hombourger <[email protected]>
    chombourger committed Jan 5, 2022
    Configuration menu
    Copy the full SHA
    d6346f5 View commit details
    Browse the repository at this point in the history
  4. Merge pull request 0rpc#245 from chombourger/issue-239

    core: handle both "async" and "asynchronous" in remote calls
    bombela authored Jan 5, 2022
    Configuration menu
    Copy the full SHA
    6e21cd2 View commit details
    Browse the repository at this point in the history

Commits on Jan 6, 2022

  1. Move from deprecated nose to pytest (solves 0rpc#243)

    Signed-off-by: Tomasz Kłoczko <[email protected]>
    kloczek committed Jan 6, 2022
    Configuration menu
    Copy the full SHA
    f662983 View commit details
    Browse the repository at this point in the history
  2. Merge pull request 0rpc#247 from kloczek/master

    Move from deprecated nose to pytest (solves 0rpc#243)
    bombela authored Jan 6, 2022
    Configuration menu
    Copy the full SHA
    99ee6e4 View commit details
    Browse the repository at this point in the history

Commits on May 19, 2022

  1. gevent_zmq: import enums from pyzmq >= 23.0.0

    With pyzmq 23.0.0, constants were changed to enums and moved to the
    constants module. Attempt to import all globals from it into our zmq
    wrapper.
    
    Closes: 0rpc#251
    Signed-off-by: Cedric Hombourger <[email protected]>
    chombourger committed May 19, 2022
    Configuration menu
    Copy the full SHA
    dd6843c View commit details
    Browse the repository at this point in the history

Commits on Jul 20, 2022

  1. docs: Fix a few typos

    There are small typos in:
    - doc/protocol.md
    - zerorpc/core.py
    
    Fixes:
    - Should read `transferred` rather than `transfered`.
    - Should read `occurred` rather than `occured`.
    
    Signed-off-by: Tim Gates <[email protected]>
    timgates42 committed Jul 20, 2022
    Configuration menu
    Copy the full SHA
    be57835 View commit details
    Browse the repository at this point in the history

Commits on Feb 8, 2025

  1. Merge pull request 0rpc#253 from timgates42/bugfix_typos

    docs: Fix a few typos
    bombela authored Feb 8, 2025
    Configuration menu
    Copy the full SHA
    9b174c8 View commit details
    Browse the repository at this point in the history
  2. Merge pull request 0rpc#252 from chombourger/issue-251

    gevent_zmq: import enums from pyzmq >= 23.0.0
    bombela authored Feb 8, 2025
    Configuration menu
    Copy the full SHA
    668af5b View commit details
    Browse the repository at this point in the history
Loading