| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | apply pyupgrade --py36-plus | David Lord | 2020-04-19 | 1 | -12/+10 |
| | | |||||
| * | remove more compat code | David Lord | 2020-04-19 | 1 | -17/+2 |
| | | |||||
| * | manual cleanup | David Lord | 2020-03-08 | 1 | -4/+4 |
| | | |||||
| * | apply flake8 | David Lord | 2020-03-06 | 1 | -3/+2 |
| | | |||||
| * | apply black | David Lord | 2020-03-06 | 1 | -142/+139 |
| | | |||||
| * | apply reorder-python-imports | David Lord | 2020-03-06 | 1 | -3/+3 |
| | | |||||
| * | refactor open_stream and text stream utilities | David Lord | 2020-02-19 | 1 | -55/+32 |
| | | |||||
| * | open_file respects "errors" parameter | Joe Ledger | 2020-02-16 | 1 | -0/+60 |
| | | | | | Signed-off-by: Joe Ledger <joewledger@gmail.com> | ||||
| * | Add tests for atomic open_file permissions | Max Smolens | 2020-02-16 | 1 | -0/+43 |
| | | |||||
| * | add test for unstyling other ansi controls | David Lord | 2020-02-16 | 1 | -25/+38 |
| | | | | | parametrize existing unstyle test | ||||
| * | CliRunner: add stdout / stderr, allow separating standard streams (#868) | Dave Carlson | 2018-05-14 | 1 | -5/+5 |
| | | | | * add separated stderr to test runner | ||||
| * | Merge pull request #889 from stefreak/master | Dan Sully | 2018-05-14 | 1 | -3/+25 |
| |\ | | | | | Implement streaming pager. Fixes #409 | ||||
| | * | Implement streaming pager. Fixes #409 | Steffen Neubauer | 2018-04-04 | 1 | -3/+25 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The streaming pager works using generators. You can pass a generator function or object into echo_via_pager: generator expression: ``` click.echo_via_pager(("{}\n".format(i) for i in range(999999))) ``` generator function / expression: ``` def gen(): counter = 0 while True: counter++ yield counter click.echo_via_pager(gen) click.echo_via_pager(gen()) # you can pass both ``` | ||||
| * | | Fix ResourceWarning that occur during tests | Jon Dufresne | 2017-10-17 | 1 | -6/+7 |
| |/ | | | | | | | | | Appear as: ResourceWarning: unclosed file ... Always close a file explicitly. Use a context manager to make this simpler. | ||||
| * | Added two xfails | Armin Ronacher | 2015-11-05 | 1 | -4/+4 |
| | | |||||
| * | Fixed broken tests and behavior on windows. | Armin Ronacher | 2015-11-05 | 1 | -3/+11 |
| | | |||||
| * | Ignore broken PAGER values | Markus Unterwaditzer | 2015-08-08 | 1 | -2/+5 |
| | | | | | Fix #403 | ||||
| * | Password prompt now prints a newline on `^C`. | Markus Unterwaditzer | 2015-07-25 | 1 | -0/+15 |
| | | |||||
| * | Merge branch '4.x-maintenance' | Markus Unterwaditzer | 2015-06-21 | 1 | -0/+7 |
| |\ | |||||
| | * | Fix crash when writing to unicode files | Markus Unterwaditzer | 2015-06-21 | 1 | -0/+7 |
| | | | | | | | | | Fix #339 | ||||
| * | | Make click.utils.KeepOpenFile() and LazyFile() iterators. | Kevin Wurster | 2015-05-20 | 1 | -1/+22 |
| |/ | |||||
| * | Fixed up pausing tests and added doc information. | Armin Ronacher | 2014-09-10 | 1 | -6/+5 |
| | | |||||
| * | Tests for prompt-stderr. click.pause() fails | Kiss György | 2014-08-26 | 1 | -0/+58 |
| | | |||||
| * | Added support for explicit color control. | Armin Ronacher | 2014-08-15 | 1 | -0/+27 |
| | | |||||
| * | Added test for open_file | Armin Ronacher | 2014-08-12 | 1 | -0/+21 |
| | | |||||
| * | Fixed a regression for echo_via_pager on 3.x. This fixes #185 | Armin Ronacher | 2014-07-08 | 1 | -0/+11 |
| | | |||||
| * | Changed occurrences of "on Python" to "in Python" | Kevin Yap | 2014-05-31 | 1 | -2/+2 |
| | | |||||
| * | yN->y/N | Armin Ronacher | 2014-05-28 | 1 | -0/+40 |
| | | |||||
| * | Added tests for styling | Armin Ronacher | 2014-05-27 | 1 | -0/+28 |
| | | |||||
| * | Fixed a test on python 3 | Armin Ronacher | 2014-05-26 | 1 | -1/+1 |
| | | |||||
| * | Ensure we do not strip color codes for bytes. | Armin Ronacher | 2014-05-26 | 1 | -0/+5 |
| | | |||||
| * | Unbroke colorama integrated echo for unicode. | Armin Ronacher | 2014-05-26 | 1 | -0/+19 |
| | | |||||
| * | Refactored pager support to not rely on pydoc | Armin Ronacher | 2014-05-26 | 1 | -1/+2 |
| | | |||||
| * | Fixed a broken test on 3.x1.x-maintenance | Armin Ronacher | 2014-05-24 | 1 | -1/+1 |
| | | |||||
| * | Added filename format function | Armin Ronacher | 2014-05-22 | 1 | -0/+9 |
| | | |||||
| * | Added echo tests | Armin Ronacher | 2014-05-11 | 1 | -0/+11 |
