]> git.phdru.name Git - dotfiles.git/commitdiff
init.py: restore links to the origin of borrowed code
authorOleg Broytman <phd@phdru.name>
Tue, 19 Apr 2016 09:28:48 +0000 (12:28 +0300)
committerOleg Broytman <phd@phdru.name>
Tue, 19 Apr 2016 09:28:48 +0000 (12:28 +0300)
lib/python/init.py

index cc3b66be214e070336213d0d703fd40305b40fe4..44aebe49725066875ba2aa146f619a3e973f7c02 100644 (file)
@@ -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
     #