Merging Heads
authorbhanu
Thu, 11 Nov 2010 02:28:55 +0530
changeset 457 68813d8d80fb
parent 456 be96dc6c9743 (diff)
parent 451 c61ed190af5e (current diff)
child 461 757418fff170
Merging Heads
advanced-features-functions/script.rst
loops/script.rst
plotui/buttons.png
plotui/move.png
plotui/questions.rst
plotui/quickref.tex
plotui/save.png
plotui/script.rst
plotui/slides.tex
plotui/zoom.png
--- a/advanced-features-functions/script.rst	Thu Nov 11 01:43:26 2010 +0530
+++ b/advanced-features-functions/script.rst	Thu Nov 11 02:28:55 2010 +0530
@@ -19,6 +19,7 @@
 .. Author              : Puneeth 
    Internal Reviewer   : Anoop Jacob Thomas<anoop@fossee.in>
    External Reviewer   :
+   Language Reviewer   : Bhanukiran
    Checklist OK?       : <put date stamp here, if OK> [2010-10-05]
 
 Script
--- a/loops/questions.rst	Thu Nov 11 01:43:26 2010 +0530
+++ b/loops/questions.rst	Thu Nov 11 02:28:55 2010 +0530
@@ -16,7 +16,7 @@
    #. all of the above
 
 .. I was not sure of how to frame this question. Can someone fix it?
-
+..#[bhanu: it works for every `sequence` or an iterator for that matter right?]
    Answer: all of the above
 
 #. ``x = range(20)``. What is x?
@@ -85,7 +85,7 @@
 
    Answer: Nothing is printed
 
-.. #[[Anoop: I think more questions on while loop has to be added as
+.. #[[Anoop: I think more questions on while loop have to be added as
    for loop was already covered in another LO, these questions can be
    kept, but it will good if we add few more on while loop]]
 
--- a/loops/script.rst	Thu Nov 11 01:43:26 2010 +0530
+++ b/loops/script.rst	Thu Nov 11 02:28:55 2010 +0530
@@ -19,6 +19,7 @@
 .. Author              : Puneeth
    Internal Reviewer   : Anoop Jacob Thomas<anoop@fossee.in>
    External Reviewer   :
+   Langauge Reviewer   : Bhanukiran
    Checklist OK?       : <put date stamp here, if OK> [2010-10-05]
 
 Script
--- a/manipulating-strings/script.rst	Thu Nov 11 01:43:26 2010 +0530
+++ b/manipulating-strings/script.rst	Thu Nov 11 02:28:55 2010 +0530
@@ -19,7 +19,8 @@
 .. Author              : Puneeth 
    Internal Reviewer   : Amit 
    External Reviewer   :
-   Checklist OK?       : <put date stamp here, if OK> [2010-10-05]
+   Language Reviewer   : Bhanukiran
+   Checklist OK?       : <08-11-2010, Anand, OK> [2010-10-05]
 
 Script
 ------
@@ -90,8 +91,8 @@
 
     s[1:-1]
 
-gives the a substring of s, without the first and the last
-characters. 
+gives the substring of s, without the first and the last
+characters of s. 
 
 ::