execfile(pyreadlinew32_startup)
else:
- # From Bruce Edge
+ # From Bruce Edge:
+ # https://mail.python.org/pipermail/python-list/2001-March/062888.html
try:
import rlcompleter, readline
else:
background = os.environ.get('BACKGROUND', 'light').lower()
- # From Randall Hopper
+ # From Randall Hopper:
+ # https://mail.python.org/pipermail/python-list/2001-March/112696.html
for _term in ['linux', 'rxvt', 'screen', 'term', 'vt100']:
if _term not in term:
pass # no locale support or unsupported locale
- # From: Paul Magwene with a lot of my fixes
+ # From: Paul Magwene:
+ # https://mail.python.org/pipermail/python-list/2001-March/086191.html
+ # With a lot of my fixes:
class DirLister:
def __getitem__(self, key):
__builtin__.ls = DirLister()
__builtin__.cd = DirChanger()
+ # From Thomas Heller:
+ # https://mail.python.org/pipermail/python-list/2001-April/099020.html
# From Thomas Heller
#