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: googleapis/google-cloud-python
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: main
Choose a base ref
...
head repository: josefbarta/google-cloud-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.
  • 9 commits
  • 2 files changed
  • 2 contributors

Commits on Nov 14, 2017

  1. added methods for getting keys, items and dict

    This change enables to retrieve the row as a dict and iterate the keys and/or items, like with a normal dict; in other words, making the Row object a dict-like object:
    
    >>> row.dict()
    {'name': 'Isabel', 'profession': 'bridge builder'}
    >>> for k, v in row.items():
    >>> for k in row.keys():
    josefbarta authored Nov 14, 2017
    Configuration menu
    Copy the full SHA
    0356f10 View commit details
    Browse the repository at this point in the history
  2. fixed row length

    josefbarta authored Nov 14, 2017
    Configuration menu
    Copy the full SHA
    91d007d View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    deebcd1 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    8496453 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    f9b926b View commit details
    Browse the repository at this point in the history
  6. added docstrings

    josefbarta authored Nov 14, 2017
    Configuration menu
    Copy the full SHA
    b90326b View commit details
    Browse the repository at this point in the history
  7. update tests for new Row methods

    update tests for Row.keys(), Row.items() and Row.dict()
    josefbarta authored Nov 14, 2017
    Configuration menu
    Copy the full SHA
    52854c3 View commit details
    Browse the repository at this point in the history
  8. Update test_table.py

    josefbarta authored Nov 14, 2017
    Configuration menu
    Copy the full SHA
    b4749a2 View commit details
    Browse the repository at this point in the history

Commits on Nov 17, 2017

  1. get method for Row

    josef-artlogic committed Nov 17, 2017
    Configuration menu
    Copy the full SHA
    9356b66 View commit details
    Browse the repository at this point in the history
Loading