[issue26830] Refactor Tools/scripts/google.py

2016-09-14 Thread Berker Peksag
Berker Peksag added the comment: Thanks! -- resolution: -> fixed stage: patch review -> resolved status: open -> closed versions: +Python 3.7 -Python 3.6 ___ Python tracker

[issue26830] Refactor Tools/scripts/google.py

2016-09-14 Thread Roundup Robot
Roundup Robot added the comment: New changeset f8c11b61cfb7 by Berker Peksag in branch 'default': Issue #26830: Refactor Tools/scripts/google.py https://hg.python.org/cpython/rev/f8c11b61cfb7 -- nosy: +python-dev ___ Python tracker

[issue26830] Refactor Tools/scripts/google.py

2016-09-14 Thread Francisco Couzo
Changes by Francisco Couzo : Added file: http://bugs.python.org/file44652/scripts_google_v4.patch ___ Python tracker ___

[issue26830] Refactor Tools/scripts/google.py

2016-04-29 Thread Francisco Couzo
Francisco Couzo added the comment: Here's the patch with the modifications from the review. -- Added file: http://bugs.python.org/file42657/scripts_google_v2.patch ___ Python tracker

[issue26830] Refactor Tools/scripts/google.py

2016-04-29 Thread Terry J. Reedy
Terry J. Reedy added the comment: Demos should demonstrate proper modern code. 1. Contain decent docstrings. 2. Dependency on sys.argv, derived from a command line, should be in the 'if __name__' clause triggered when the module *is* invoked from command line. Especially in simple cases

[issue26830] Refactor Tools/scripts/google.py

2016-04-23 Thread Francisco Couzo
Francisco Couzo added the comment: I was also going to refactor the other demo scripts, but first I wanted to make sure there was at least some kind of interest in it. -- ___ Python tracker

[issue26830] Refactor Tools/scripts/google.py

2016-04-22 Thread Ned Deily
Ned Deily added the comment: FWIW, I'm -0 on removing google.py and +0.5 on the refactoring. It seems like it could still be useful as either an example or a tool. Georg did a cleanup of the Tools directory several years ago (in Issue7962). Rather than removing one script, it might be more

[issue26830] Refactor Tools/scripts/google.py

2016-04-22 Thread Berker Peksag
New submission from Berker Peksag: I don't think google.py is useful anymore. I'd prefer to just remove it from the cpython repository. -- components: +Demos and Tools nosy: +berker.peksag stage: -> patch review ___ Python tracker

[issue26830] Refactor Tools/scripts/google.py

2016-04-22 Thread Francisco Couzo
Changes by Francisco Couzo : -- files: scripts_google.patch keywords: patch nosy: franciscouzo priority: normal severity: normal status: open title: Refactor Tools/scripts/google.py type: enhancement versions: Python 3.6 Added file: