Show More
@@ -30,15 +30,18 b' from . import (' | |||||
30 | # locale encoding correctly. --immerrr |
|
30 | # locale encoding correctly. --immerrr | |
31 | locale.setlocale(locale.LC_ALL, '') |
|
31 | locale.setlocale(locale.LC_ALL, '') | |
32 |
|
32 | |||
33 | # os.name is one of: 'posix', 'nt', 'dos', 'os2', 'mac', or 'ce' |
|
33 | try: | |
34 | if os.name == 'posix': |
|
|||
35 | import curses |
|
34 | import curses | |
36 | import fcntl |
|
35 | import fcntl | |
37 | import termios |
|
36 | import termios | |
38 | else: |
|
37 | curses.error | |
|
38 | fcntl.ioctl | |||
|
39 | termios.TIOCGWINSZ | |||
|
40 | except ImportError: | |||
39 | # I have no idea if wcurses works with crecord... |
|
41 | # I have no idea if wcurses works with crecord... | |
40 | try: |
|
42 | try: | |
41 | import wcurses as curses |
|
43 | import wcurses as curses | |
|
44 | curses.error | |||
42 | except ImportError: |
|
45 | except ImportError: | |
43 | # wcurses is not shipped on Windows by default |
|
46 | # wcurses is not shipped on Windows by default | |
44 | pass |
|
47 | pass |
General Comments 0
You need to be logged in to leave comments.
Login now