-
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-v0.7.2, released as 0.7.2.
- Loading branch information
Showing
15 changed files
with
223 additions
and
64 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,3 +1,14 @@ | ||
ayrton (0.7.2) UNRELEASED; 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. | ||
* 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 | ||
|
||
ayrton (0.7.1) unstable; urgency=medium | ||
|
||
* Iterable parameters to executables are expanded in situ, so `foo(..., i, ...)` is expanded to `foo (..., i[0], i[1], ...` and `foo(..., k=i, ...)` is expanded to `foo (..., k=i[0], k=i[1], ...`. | ||
|
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
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
Oops, something went wrong.