.. -*- coding: utf-8 -*- Version 0.36.1 -------------- :publication date: 2008/11/14 :expected date: n/a Ticket #6568 rename .restart to .pytest.restart ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ :type: bug :load: 0.100 :state: resolved to avoid name clash with other tools Ticket #6594 add common.shellutils.globfind() ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ :type: enhancement :load: 0.200 :state: resolved introduce shellutils.globfind as an alternative to find that accepts glob patterns (easier to have separate function for backward compatibility reasons) Ticket #6528 [common.configuration] check_date checks for a password ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ :type: bug :load: 0.500 :state: resolved Bug report and patch by Alain Barthes (thx): problem line 165 in configuration.py Ticket #6592 incorrect edges syntax in dot file generation ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ :type: bug :load: 0.200 :state: resolved fix dot files' edge generation Before this patch, edges were defined using the following scheme : Node1 -> Node2 edge [attrs...] Node2 -> Node3 which `dot` understands as three instructions : Node1 -> Node2 ; edge [attr...]; Node2 -> Node3; which means that edge properties are applied to the Node2->Node3 edge rather than to the Node1->Node2 edge. The correct syntax is : Node1 -> Node2 [attr...]; Node2 -> Node3;