-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
|\ merge from release-0.7.2.1, released as 0.7.2.
- Loading branch information
Showing
7 changed files
with
90 additions
and
41 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,19 @@ | ||
ayrton (0.7.2) UNRELEASED; urgency=medium | ||
ayrton (0.7.2.1) unstable; urgency=medium | ||
|
||
* Fix running remote tests with other versions of python. | ||
* Fix tests borken by a change in `ls`'s output. | ||
* Fix iterating over the long output of a command à la `for line in foo(...): ...`. Currently you must add `_bg=True` to the execution options. | ||
* Fix recognizing names bound by for loops. | ||
* Fix iterating over the log ouput of a `Command` in synchronous mode (that is, not running in the `_bg`). This complements the fix in the previous release. | ||
|
||
-- Marcos Dione <[email protected]> Fri, 26 Feb 2016 13:54:46 +0100 | ||
|
||
ayrton (0.7.2) unstable; urgency=medium | ||
|
||
* Fix running remote tests with other versions of Python. | ||
* Fix tests broken by a change in `ls`'s output. | ||
* Fix iterating over the long output of a `Command` à la `for line in foo(...): ...`. Currently you must add `_bg=True` to the execution options. | ||
* Fix recognizing names bound by `for` loops. | ||
* Added options `-d|--debug`, `-dd|--debug2` and `-ddd|--debug3` for enabling debug logs. | ||
* Added option `-xxx|--trace-all` for tracing all python execution. Use with caution, it generates lots of output. | ||
|
||
-- Marcos Dione <[email protected]> Thu, 25 Feb 2016 12:40:04 +0100 | ||
-- Marcos Dione <[email protected]> Thu, 25 Feb 2016 13:09:08 +0100 | ||
|
||
ayrton (0.7.1) unstable; urgency=medium | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#! /usr/bin/env ayrton | ||
|
||
for line in echo ('yes!'): | ||
for line in echo ('yes!', _bg=True): | ||
ayrton_return_value= line.strip () |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters