##// END OF EJS Templates
Remove useless semicolon
Rémy Léone -
Show More
@@ -1471,7 +1471,7 b' class InteractiveShell(SingletonConfigurable):'
1471 ]
1471 ]
1472
1472
1473 # initialize results to 'null'
1473 # initialize results to 'null'
1474 found = False; obj = None; ospace = None; ds = None;
1474 found = False; obj = None; ospace = None; ds = None
1475 ismagic = False; isalias = False; parent = None
1475 ismagic = False; isalias = False; parent = None
1476
1476
1477 # We need to special-case 'print', which as of python2.6 registers as a
1477 # We need to special-case 'print', which as of python2.6 registers as a
@@ -225,7 +225,7 b' class SList(list):'
225 try:
225 try:
226 n = int(numstr)
226 n = int(numstr)
227 except ValueError:
227 except ValueError:
228 n = 0;
228 n = 0
229 dsu[i][0] = n
229 dsu[i][0] = n
230
230
231
231
General Comments 0
You need to be logged in to leave comments. Login now