[issue27185] Increase Test Coverage for the String Module

2016-06-02 Thread Erin Braswell
Erin Braswell added the comment: Oh! I can do that, and resubmit the patch! Good suggestion. Thank you again. -- ___ Python tracker ___ __

[issue27185] Increase Test Coverage for the String Module

2016-06-02 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Or at least add a reference in test_string.py. -- ___ Python tracker ___ ___ Python-bugs-list mail

[issue27185] Increase Test Coverage for the String Module

2016-06-02 Thread Benjamin Peterson
Benjamin Peterson added the comment: It probably makes sense to move test_pep292.py tests into test_string.py. Test files named after peps are not very helpful. -- nosy: +benjamin.peterson ___ Python tracker _

[issue27185] Increase Test Coverage for the String Module

2016-06-02 Thread Erin Braswell
Erin Braswell added the comment: Just checked! Apologies for this totally unnecessary patch, didn't know to look elsewhere but now I absolutely do -- looks like all the tests are there and more. Thank you! -- resolution: -> duplicate status: open -> closed __

[issue27185] Increase Test Coverage for the String Module

2016-06-02 Thread Gregory P. Smith
Gregory P. Smith added the comment: Thanks Serhiy. Given that, I suggest checking if the new tests this adds are already covered in test_pep292.py or not to decide if we should move forward with this patch or not. -- ___ Python tracker

[issue27185] Increase Test Coverage for the String Module

2016-06-02 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: string.Template is tested in Lib/test/test_pep292.py. -- nosy: +serhiy.storchaka ___ Python tracker ___ __

[issue27185] Increase Test Coverage for the String Module

2016-06-02 Thread Gregory P. Smith
New submission from Gregory P. Smith: Can you sign the Python contributor form - https://www.python.org/psf/contrib/contrib-form/? (If you already have, just say so.) -- nosy: +gregory.p.smith ___ Python tracker

[issue27185] Increase Test Coverage for the String Module

2016-06-02 Thread Erin Braswell
Changes by Erin Braswell : -- components: Tests files: stringtests.patch keywords: patch nosy: erinspace priority: normal severity: normal status: open title: Increase Test Coverage for the String Module type: enhancement Added file: http://bugs.python.org/file43104/stringtests.patch __