コード例 #1
0
ファイル: _curses.py プロジェクト: abhinavthomas/pypy
 def scroll(self, nlines=None):
     if nlines is None:
         return _check_ERR(lib.scroll(self._win), "scroll")
     else:
         return _check_ERR(lib.wscrl(self._win, nlines), "scroll")
コード例 #2
0
ファイル: _curses.py プロジェクト: solarmagic/hashcode
 def scroll(self, nlines=None):
     if nlines is None:
         return _check_ERR(lib.scroll(self._win), "scroll")
     else:
         return _check_ERR(lib.wscrl(self._win, nlines), "scroll")