From: Oleg Broytman Date: Tue, 19 Apr 2016 09:28:48 +0000 (+0300) Subject: init.py: restore links to the origin of borrowed code X-Git-Url: https://git.phdru.name/?p=dotfiles.git;a=commitdiff_plain;h=a41d9660d2c49abc7ead86794e9f1c3212c7cd92 init.py: restore links to the origin of borrowed code --- diff --git a/lib/python/init.py b/lib/python/init.py index cc3b66b..44aebe4 100644 --- a/lib/python/init.py +++ b/lib/python/init.py @@ -18,7 +18,8 @@ def init(): 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 @@ -57,7 +58,8 @@ def init(): 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: @@ -117,7 +119,9 @@ def init(): 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): @@ -150,6 +154,8 @@ def init(): __builtin__.ls = DirLister() __builtin__.cd = DirChanger() + # From Thomas Heller: + # https://mail.python.org/pipermail/python-list/2001-April/099020.html # From Thomas Heller #