Changeset 586
- Timestamp:
- 07/28/08 00:46:36 (4 months ago)
- Files:
-
- cly/trunk/cly/console.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
cly/trunk/cly/console.py
r585 r586 358 358 Returns -1 if the terminal width can not be determined. 359 359 """ 360 if not _stdout_is_a_tty: 361 return -1 360 362 try: 361 363 import curses … … 370 372 Returns -1 if the terminal height can not be determined. 371 373 """ 374 if not _stdout_is_a_tty: 375 return -1 372 376 try: 373 377 import curses
