Ignore:
Timestamp:
Mar 19, 2014, 11:11:30 AM (11 years ago)
Author:
dmik
Message:

python: Update vendor to 2.7.6.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • python/vendor/current/Lib/getpass.py

    r2 r388  
    5252        try:
    5353            fd = sys.stdin.fileno()
    54         except:
     54        except (AttributeError, ValueError):
    5555            passwd = fallback_getpass(prompt, stream)
    5656        input = sys.stdin
     
    6363            old = termios.tcgetattr(fd)     # a copy to save
    6464            new = old[:]
    65             new[3] &= ~(termios.ECHO|termios.ISIG)  # 3 == 'lflags'
     65            new[3] &= ~termios.ECHO  # 3 == 'lflags'
    6666            tcsetattr_flags = termios.TCSAFLUSH
    6767            if hasattr(termios, 'TCSASOFT'):
Note: See TracChangeset for help on using the changeset viewer.