2019-11-20 20:19:50 -03:00
..
2019-04-06 11:34:18 -03:00
2019-11-20 20:19:50 -03:00
2019-11-20 20:19:50 -03:00
2015-03-31 18:48:24 -03:00
2015-03-31 16:53:46 -03:00
2019-11-20 20:19:50 -03:00
2019-11-20 20:19:50 -03:00
2019-04-06 11:34:18 -03:00
2019-11-20 20:19:50 -03:00

# An Array of Sequences

Sample code for Chapter 2 of _Fluent Python 2e_ by Luciano Ramalho (O'Reilly, 2020)

## Running the tests

### Doctests

Use Python's standard ``doctest`` module, for example:

    $ python3 -m doctest bisect_demo.py -v

### Jupyter Notebook

Install ``pytest`` and the ``nbval`` plugin:

    $ pip install pytest nbval

Run:

    $ pytest --nbval