==============
- ProgBar and ProgPerc inherit data members from parent class Prog
- Added ProgBar and ProgPerc default argument `stream=2` to write to stderr by
default. Set `stream=1` to write to stdout.
my_prbar = pyprind.ProgBar(n, stream=1) writes to stdout
my_prbar = pyprind.ProgBar(n, stream=2) writes to stderr, default
- Does not redirect data to the standard output or error stream if program is not
outputting to a terminal.