Revision: dcca6617db66
Branch:   default
Author:   Jussi Malinen <[email protected]>
Date:     Mon May 13 08:23:56 2013
Log: make kwargs non ascii name checks non critical on all interpreters under 2.7
http://code.google.com/p/robotframework/source/detail?r=dcca6617db66

Modified:
 /atest/resources/atest_resource.txt
 /atest/resources/read_interpreter.py

=======================================
--- /atest/resources/atest_resource.txt Mon May 13 08:21:27 2013
+++ /atest/resources/atest_resource.txt Mon May 13 08:23:56 2013
@@ -321,8 +321,8 @@
     \    Should Be Equal    ${kw.status}    PASS
     \    All Keywords Should Have Passed    ${kw}

-Run on Python 2.5 and 2.6
+Run on python 2.5 and 2.6
     [arguments]     ${kw}   @{args}
     ${interpreter} =    Get interpreter    ${OUTFILE}
-    ${is python 25 or 26} =   Is python 25 or 26    ${interpreter}
-    Run keyword if    ${is python 25 or 26}    ${kw}   @{args}
+    ${is 27} =   is 27    ${interpreter}
+    Run keyword unless    ${is 27}    ${kw}   @{args}
=======================================
--- /atest/resources/read_interpreter.py        Mon May 13 08:21:27 2013
+++ /atest/resources/read_interpreter.py        Mon May 13 08:23:56 2013
@@ -22,5 +22,3 @@
 def is_python(interpreter):
     return interpreter.interpreter.lower() == 'python'

-def is_python_25_or_26(interpreter):
-    return is_python(interpreter) and not is_27(interpreter)

--

--- You received this message because you are subscribed to the Google Groups "robotframework-commit" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to