|
3 | 3 | <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> |
4 | 4 | <head> |
5 | 5 | <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> |
6 | | -<meta name="generator" content="Docutils 0.6: http://docutils.sourceforge.net/" /> |
| 6 | +<meta name="generator" content="Docutils 0.7: http://docutils.sourceforge.net/" /> |
7 | 7 | <title>Python Tutorial for Robot Framework Test Library Developers</title> |
8 | 8 | <style type="text/css"> |
9 | 9 |
|
@@ -506,7 +506,7 @@ <h1 class="title">Python Tutorial for Robot Framework Test Library Developers</h |
506 | 506 | - path file names and paths |
507 | 507 | - misc everything else (synonym to ``text``) --> |
508 | 508 | <div class="line-block"> |
509 | | -<div class="line">Copyright © Nokia Siemens Networks 2009</div> |
| 509 | +<div class="line">Copyright © Nokia Siemens Networks 2008-2010</div> |
510 | 510 | <div class="line">Licensed under the <a class="reference external" href="http://creativecommons.org/licenses/by/3.0/">Creative Commons Attribution 3.0 Unported</a> license</div> |
511 | 511 | </div> |
512 | 512 | <div class="contents topic" id="table-of-contents"> |
@@ -1040,7 +1040,7 @@ <h2><a class="toc-backref" href="#id29">Looping</a></h2> |
1040 | 1040 | </li> |
1041 | 1041 | <li><p class="first"><span class="code">while</span> loops iterate as long as given expression is true. Very handy |
1042 | 1042 | when waiting some event to occur.</p> |
1043 | | -<div class="highlight"><pre><span class="k">def</span> <span class="nf">wait_until_message_received</span><span class="p">:</span> |
| 1043 | +<div class="highlight"><pre><span class="k">def</span> <span class="nf">wait_until_message_received</span><span class="p">():</span> |
1044 | 1044 | <span class="n">msg</span> <span class="o">=</span> <span class="n">try_to_receive_message</span><span class="p">()</span> |
1045 | 1045 | <span class="k">while</span> <span class="n">msg</span> <span class="ow">is</span> <span class="bp">None</span><span class="p">:</span> |
1046 | 1046 | <span class="n">time</span><span class="o">.</span><span class="n">sleep</span><span class="p">(</span><span class="mi">5</span><span class="p">)</span> |
@@ -1410,7 +1410,7 @@ <h2><a class="toc-backref" href="#id42">Executable example</a></h2> |
1410 | 1410 | <div class="footer"> |
1411 | 1411 | <hr class="footer" /> |
1412 | 1412 | <p>Generated by <a class="reference external" href="http://docutils.sourceforge.net/rst.html">reStructuredText</a>. Syntax highlighting by <a class="reference external" href="http://pygments.org/">Pygments</a>.</p> |
1413 | | -<p>Generated on: 2010-03-10 09:49 UTC. |
| 1413 | +<p>Generated on: 2010-11-01 08:52 UTC. |
1414 | 1414 | </p> |
1415 | 1415 |
|
1416 | 1416 | </div> |
|
0 commit comments