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: apache/cassandra-python-driver
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: trunk
Choose a base ref
...
head repository: datapublica/python-driver
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.
  • 4 commits
  • 30 files changed
  • 1 contributor

Commits on Dec 19, 2013

  1. Port to python3

    scharron committed Dec 19, 2013
    Configuration menu
    Copy the full SHA
    b6933b4 View commit details
    Browse the repository at this point in the history

Commits on Jan 14, 2014

  1. Remove futures dependency

    In python3 we already have a future implementation. If we add an external lib, we have a name conflict with the interpreter printing big warnings.
    scharron committed Jan 14, 2014
    Configuration menu
    Copy the full SHA
    3ce69ed View commit details
    Browse the repository at this point in the history

Commits on Jan 15, 2014

  1. Fix a bug in asyncorereactor.py

    There is a bug where threads are blocked, waiting for data to read. I think by breaking the read loop, we are querying the socket status and thus we will avoid this nasty bug.
    scharron committed Jan 15, 2014
    Configuration menu
    Copy the full SHA
    f4f67d3 View commit details
    Browse the repository at this point in the history

Commits on Jan 20, 2014

  1. Fix TypeError: None and ints are not comparable.

    To shutdown the cluster, (None, None) was added in an heapqueue. However, keys used to be ints (time in fact).
    Replace None by 0 to have it pushed in first position.
    scharron committed Jan 20, 2014
    Configuration menu
    Copy the full SHA
    70ac97c View commit details
    Browse the repository at this point in the history
Loading