/pyjs/tests/test027.py

http://pyjamas.googlecode.com/ · Python · 10 lines · 8 code · 2 blank · 0 comment · 1 complexity · a03531ea0dc7c4f76d073e6691ba0b4a MD5 · raw file

  1. class RowDataAcceptorImpl:
  2. def accept(self, startRow, data):
  3. srcRowIndex = 0
  4. srcRowCount = 5
  5. destRowIndex = 1
  6. while srcRowIndex < srcRowCount:
  7. srcRowIndex += 1
  8. destRowIndex += 1