[issue17484] add tests for getpass

2013-12-27 Thread Roundup Robot
Roundup Robot added the comment: New changeset 100f632d4306 by R David Murray in branch '3.3': #18116: backport fix to 3.3 since real-world failure mode demonstrated. http://hg.python.org/cpython/rev/100f632d4306 -- ___ Python tracker

[issue17484] add tests for getpass

2013-04-08 Thread R. David Murray
R. David Murray added the comment: Thanks, Thomas. -- resolution: -> fixed stage: -> committed/rejected status: open -> closed ___ Python tracker ___ __

[issue17484] add tests for getpass

2013-04-08 Thread Roundup Robot
Roundup Robot added the comment: New changeset 113ff45c3f11 by R David Murray in branch 'default': #17484: Actually add the getpass tests this time. http://hg.python.org/cpython/rev/113ff45c3f11 -- ___ Python tracker

[issue17484] add tests for getpass

2013-04-08 Thread R. David Murray
R. David Murray added the comment: Indeed I did. That's what I get for staging it one day and committing it the next...I forgot I hadn't done the add command. -- ___ Python tracker ___

[issue17484] add tests for getpass

2013-04-08 Thread Antoine Pitrou
Antoine Pitrou added the comment: Did you forget to add test_getpass.py? -- nosy: +pitrou ___ Python tracker ___ ___ Python-bugs-list

[issue17484] add tests for getpass

2013-04-07 Thread Roundup Robot
Roundup Robot added the comment: New changeset 4059ef685754 by R David Murray in branch 'default': #17484: add tests for getpass. http://hg.python.org/cpython/rev/4059ef685754 -- nosy: +python-dev ___ Python tracker

[issue17484] add tests for getpass

2013-04-03 Thread Thomas Fenzl
Thomas Fenzl added the comment: I signed the contributor agreement during pycon, with the pdf sent to me on March 19th, 15:25 PDT -- ___ Python tracker ___ _

[issue17484] add tests for getpass

2013-04-02 Thread R. David Murray
R. David Murray added the comment: Thomas, did you submit a contributor agreement at PyCon (or after)? If so I need to go bug someone to get the tracker updated. I'm attaching a slightly modified version of your patch, cleaning up the output that was showing up on stdout and using assertWarns

[issue17484] add tests for getpass

2013-03-20 Thread Thomas Fenzl
Changes by Thomas Fenzl : Added file: http://bugs.python.org/file29500/getpass_tests-3.diff ___ Python tracker ___ ___ Python-bugs-list mailin

[issue17484] add tests for getpass

2013-03-19 Thread R. David Murray
R. David Murray added the comment: I've added some review comments, mostly style issues. -- nosy: +r.david.murray ___ Python tracker ___ _

[issue17484] add tests for getpass

2013-03-19 Thread Thomas Fenzl
Changes by Thomas Fenzl : Added file: http://bugs.python.org/file29491/getpass_tests-2.diff ___ Python tracker ___ ___ Python-bugs-list mailin

[issue17484] add tests for getpass

2013-03-19 Thread Thomas Fenzl
New submission from Thomas Fenzl: This is a patch adding tests for the platform independend and unix specific parts of getpass. I also default initialized passwd in unix_getpass. Otherwise almost all tests would require full mocking of termios settings and such. -- keywords: +patch Add

[issue17484] add tests for getpass

2013-03-19 Thread Thomas Fenzl
Changes by Thomas Fenzl : -- components: Tests nosy: Thomas Fenzl priority: normal severity: normal status: open title: add tests for getpass type: enhancement versions: Python 3.4 ___ Python tracker __