23 lines
432 B
Python
23 lines
432 B
Python
#!/bin/python
|
|
|
|
screenData = {
|
|
'columns': 0,
|
|
'lines': 0,
|
|
'oldDelta': '',
|
|
'oldNegativeDelta': '',
|
|
'oldCursorReview':{'x':-1,'y':-1},
|
|
'oldCursor':{'x':0,'y':0},
|
|
'oldContentBytes': b'',
|
|
'oldContentText': '',
|
|
'oldContentAttrib': b'',
|
|
'newDelta': '',
|
|
'newNegativeDelta': '',
|
|
'newCursorReview':{'x':-1,'y':-1},
|
|
'newCursor':{'x':0,'y':0},
|
|
'newContentBytes': b'',
|
|
'newContentText': '',
|
|
'newContentAttrib': b'',
|
|
'oldTTY':'0',
|
|
'newTTY':'0',
|
|
}
|