mirror of
https://github.com/xonsh/xonsh.git
synced 2025-03-04 08:24:40 +01:00
can get flash
This commit is contained in:
parent
c9a449c057
commit
743357af19
1 changed files with 18 additions and 0 deletions
|
@ -1,7 +1,25 @@
|
|||
"""The main shell for xonsh."""
|
||||
import os
|
||||
import sys
|
||||
import time
|
||||
import copy
|
||||
import errno
|
||||
import select
|
||||
import struct
|
||||
import signal
|
||||
import atexit
|
||||
import traceback
|
||||
|
||||
try:
|
||||
import pty
|
||||
import fcntl
|
||||
import termios
|
||||
except ImportError:
|
||||
pass # windows
|
||||
|
||||
from urwid import Widget
|
||||
from urwid.vterm import TermModes, TermCanvas
|
||||
from urwid.display_common import AttrSpec, RealTerminal
|
||||
|
||||
class ShellView(Widget):
|
||||
_selectable = True
|
||||
|
|
Loading…
Add table
Reference in a new issue