[issue20448] Adds missing backslash to devguide setup page

2014-01-30 Thread Saimadhav Heblikar
New submission from Saimadhav Heblikar: This is a simple typofix. On line 224 and 225,there were unescaped backslashes,which resulted in the external.bat and external-amd64.bat appeared as Tools\buildbotexternal.bat and Tools\buildbotexternal-amd64.bat respectively. this patch escapes the two

[issue20448] Adds missing backslash to devguide setup page

2014-01-30 Thread Saimadhav Heblikar
Saimadhav Heblikar added the comment: http://hg.python.org/devguide/rev/99419f310cf1 -- resolution: -> duplicate status: open -> closed ___ Python tracker <http://bugs.python.org/i

[issue20451] os.exec* mangles argv on windows (splits on spaces, etc)

2014-02-01 Thread Saimadhav Heblikar
Saimadhav Heblikar added the comment: i have tried a workaround for this issue by explicitly escaping args so that same result is produced on all platforms.this patch does NOT change the behavior on non-NT platforms. If this patch is accepted,i also recommend to specify on the help pages,that

[issue20466] Example in Doc/extending/embedding.rst fails to compile cleanly

2014-02-02 Thread Saimadhav Heblikar
Saimadhav Heblikar added the comment: Patch fixes the mistake. Looks like it was copied over from earlier version. -- keywords: +patch nosy: +sahutd Added file: http://bugs.python.org/file33869/issue20466.patch ___ Python tracker <h

[issue20569] IDLE : Add clipboard history feature

2014-02-08 Thread Saimadhav Heblikar
New submission from Saimadhav Heblikar: Hi, this patch adds clipboard history feature to idle.with this,we can retrieve any cut/copied text after the start of idle. it uses a list to store the messages called _clipboard_history it creates a dialog window to present a listbox and a paste button

[issue20634] IDLE test : Typo in readme file

2014-02-15 Thread Saimadhav Heblikar
New submission from Saimadhav Heblikar: There is a typo in the readme.txt file which uses "text" instead of "test" in an example to demonstrate how to run tests. -- components: IDLE, Tests files: idle-tests-readme-typo-fix.diff keywords: patch messages: 211265 n

[issue20569] IDLE : Add clipboard history feature

2014-02-15 Thread Saimadhav Heblikar
Changes by Saimadhav Heblikar : -- status: open -> closed ___ Python tracker <http://bugs.python.org/issue20569> ___ ___ Python-bugs-list mailing list Un

[issue20640] Adds idle test for configHelpSourceEdit

2014-02-16 Thread Saimadhav Heblikar
New submission from Saimadhav Heblikar: This patch adds tests for Idle's configHelpSourceEdit.py module. There is however, a minor issue related to this patch,which is an attribute error occurring due to lines 108,115,128,139 on http://hg.python.org/cpython/file/eef7899ea7ab/Lib/id

[issue20640] Adds idle test for configHelpSourceEdit

2014-02-17 Thread Saimadhav Heblikar
Saimadhav Heblikar added the comment: Patch for adding configHelpsourceEdit test for python 3.3.I have hand tested it along with tests and it works well. Also removes certain pep8 violation in configHelpSourceEdit Adds a mock Entry class to idle_test/mock_tk (required for a .focus_set

[issue20640] Adds idle test for configHelpSourceEdit

2014-02-17 Thread Saimadhav Heblikar
Saimadhav Heblikar added the comment: Corresponding patch for 2.7 -- Added file: http://bugs.python.org/file34128/test-config-helpsource-27.patch ___ Python tracker <http://bugs.python.org/issue20

[issue20677] Minor typo in enum docs

2014-02-18 Thread Saimadhav Heblikar
Saimadhav Heblikar added the comment: Corrects the typo. -- keywords: +patch nosy: +sahutd Added file: http://bugs.python.org/file34142/enum-typo-fix.diff ___ Python tracker <http://bugs.python.org/issue20

[issue20403] Idle options dialog: add help

2014-02-22 Thread Saimadhav Heblikar
Saimadhav Heblikar added the comment: This patch brings back the help button to idle config dialog. It uses regex to "get" the correct section from the help.txt file(the same file used to display IDLE help). To make it more useful,i have added few help sentences to each of the tabs

[issue16226] IDLE crashes on *File / Path browser*

2014-02-27 Thread Saimadhav Heblikar
Saimadhav Heblikar added the comment: This patch does 1.Remove pep8 violations in PathBrowser.py . Replaces "file","dir","sorted" by "file_","dir_","sorted_" respectively. 2.Extends test coverage for PathBrowser.py in idle_tes

[issue16226] IDLE crashes on *File / Path browser*

2014-02-27 Thread Saimadhav Heblikar
Changes by Saimadhav Heblikar : Removed file: http://bugs.python.org/file34242/pathbrowser1.patch ___ Python tracker <http://bugs.python.org/issue16226> ___ ___ Python-bug

[issue20792] IDLE: Extend tests for PathBrowser

2014-02-27 Thread Saimadhav Heblikar
New submission from Saimadhav Heblikar: This patch does 1.Remove pep8 violations in PathBrowser.py . Replaces "file","dir","sorted" by "file_","dir_","sorted_" respectively. 2.Extends test coverage for PathBrowser.py in idle_tes

[issue20792] IDLE: Extend tests for PathBrowser

2014-02-27 Thread Saimadhav Heblikar
Saimadhav Heblikar added the comment: Well,thank you for the feedback to both . I will try to make a new patch , during this weekend, removing the name changes to add docstrings and add a human testable dialog for pathbrowser,as is present in other tests

[issue20792] IDLE: Extend tests for PathBrowser

2014-02-28 Thread Saimadhav Heblikar
Saimadhav Heblikar added the comment: test_DirBrowserTreeItem (idlelib.idle_test.test_pathbrowser.PathBrowserTest) ... ok test_PathBrowserTreeItem (idlelib.idle_test.test_pathbrowser.PathBrowserTest) ... ok -- Ran 2 tests in

[issue20827] IDLE : Display function argument list in ClassBrowser

2014-03-02 Thread Saimadhav Heblikar
New submission from Saimadhav Heblikar: The proposed patch 1.implements a TODO for ClassBrowser . it was (sic)show function argument list? (have to do pattern matching on source).my patch does not do pattern matching in the real sense of the phrase.it uses "imp" to import the mod

[issue20827] IDLE : Display function argument list in ClassBrowser

2014-03-12 Thread Saimadhav Heblikar
Saimadhav Heblikar added the comment: >>1. Idle is getting out of the business of formatting signatures. If we >>use >>inspect, '(...)' should simply be replaced (in 3.3+) by >>>>str(inspect.signature(ob)). (I plan to change calltips to do this >>i

[issue17535] IDLE: Add an option to show line numbers along the left side of the editor window, and have it enabled by default.

2014-03-13 Thread Saimadhav Heblikar
Saimadhav Heblikar added the comment: As a part of my GSOC 2014 proposal, i had prepared a mockup which adds linenumbering feature to a text widget.I am adding the mockup along with a image. Working: Intercepts low level calls and detects if any of the actions modify current view.If they do

[issue17535] IDLE: Add an option to show line numbers along the left side of the editor window, and have it enabled by default.

2014-03-13 Thread Saimadhav Heblikar
Changes by Saimadhav Heblikar : Added file: http://bugs.python.org/file34396/Screenshot from 2014-03-09 16:09:37.png ___ Python tracker <http://bugs.python.org/issue17

[issue17535] IDLE: Add an option to show line numbers along the left side of the editor window, and have it enabled by default.

2014-03-13 Thread Saimadhav Heblikar
Changes by Saimadhav Heblikar : Removed file: http://bugs.python.org/file34396/Screenshot from 2014-03-09 16:09:37.png ___ Python tracker <http://bugs.python.org/issue17

[issue17535] IDLE: Add an option to show line numbers along the left side of the editor window, and have it enabled by default.

2014-03-13 Thread Saimadhav Heblikar
Changes by Saimadhav Heblikar : Added file: http://bugs.python.org/file34397/line numbering mockup image.png ___ Python tracker <http://bugs.python.org/issue17

[issue21603] IDLE: Document SaveAs extension display on Mac

2014-10-12 Thread Saimadhav Heblikar
Saimadhav Heblikar added the comment: >>Saimadhav, can you quickly try Save As with x.py on Linux? with files of type python: filename stored on disk -> x.py with all files type : filename stored on disk -> x.py -- ___ Python tr

[issue3068] IDLE - Add an extension configuration dialog

2014-10-14 Thread Saimadhav Heblikar
Saimadhav Heblikar added the comment: 1. Can we have more padding at the right end of the text widget? For me, it appears attached to the scrollbar. 2. Shortcut key for Configure extensions should be different from Configure Extensions. By this I mean, with the Options menu open, there is no

[issue6171] IDLE - Class Browser selection in Ubuntu

2014-10-14 Thread Saimadhav Heblikar
Changes by Saimadhav Heblikar : -- nosy: +sahutd ___ Python tracker <http://bugs.python.org/issue6171> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue22628] Idle: Tree lines are spaced too close together.

2014-10-16 Thread Saimadhav Heblikar
Saimadhav Heblikar added the comment: It does not change anything else other than the intended, so looks OK on linux. -- ___ Python tracker <http://bugs.python.org/issue22

[issue22705] Idle extension configuration: add option-help option

2014-10-23 Thread Saimadhav Heblikar
Saimadhav Heblikar added the comment: Would like to check if a tooltip would be appropriate for this? If yes, I would like to work on it. -- nosy: +sahutd ___ Python tracker <http://bugs.python.org/issue22

[issue22705] Idle extension configuration: add option-help option

2014-10-25 Thread Saimadhav Heblikar
Saimadhav Heblikar added the comment: Attached is a patch which attempts to display help text using a ToolTip. The additional requirement is that for entry 'name', there be another entry have a 'name_help' in the config-extensions.def(easier to see the file to understand

[issue22706] Idle extension configuration and key bindings

2014-10-31 Thread Saimadhav Heblikar
Changes by Saimadhav Heblikar : -- nosy: +sahutd ___ Python tracker <http://bugs.python.org/issue22706> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue22706] Idle extension configuration and key bindings

2014-12-15 Thread Saimadhav Heblikar
Saimadhav Heblikar added the comment: Need some clarification on this issue. I tried changing the cfgBindings for FormatParagraph. It creates a new key-set and writes the changes to user config-keys.cfg in ~/.idlerc(the keybindings). Any changes made to FormatParagraph in extension dialog(the

[issue22706] Idle extension configuration and key bindings

2014-12-17 Thread Saimadhav Heblikar
Saimadhav Heblikar added the comment: ZoomHeight behavior on linux is as what you mentioned. Now I have understood this issue. Working on it. -- ___ Python tracker <http://bugs.python.org/issue22

[issue18590] Found text not always highlighted by Replace dialog on Windows

2014-12-20 Thread Saimadhav Heblikar
Saimadhav Heblikar added the comment: I tested for the behaviour described in msg193895 before and after your patch. Everything remains same except as what you mentioned. >Currently, Replace dialog Find hits are tagged with both the 'hit' and the >'sel' tag, which d

[issue22706] Idle extension configuration and key bindings

2014-12-28 Thread Saimadhav Heblikar
Changes by Saimadhav Heblikar : -- keywords: +patch Added file: http://bugs.python.org/file37550/issue22706_1.diff ___ Python tracker <http://bugs.python.org/issue22

[issue23136] BUG in how _strptime() handles week 0

2014-12-31 Thread Saimadhav Heblikar
Changes by Saimadhav Heblikar : -- nosy: +sahutd ___ Python tracker <http://bugs.python.org/issue23136> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue23136] BUG in how _strptime() handles week 0

2014-12-31 Thread Saimadhav Heblikar
Saimadhav Heblikar added the comment: Hi, Here is my understanding of it. I have used the following C example of strptime and strftime to show that the string '0 2015 2' along with the format specifier '%W %Y %w' is invalid. For any valid string, strptime followed by st

[issue23136] BUG in how _strptime() handles week 0

2014-12-31 Thread Saimadhav Heblikar
Saimadhav Heblikar added the comment: >>Not necessarily. String to datetime mapping implemented by strptime can be >>many to one. For example, I was referring to C strptime and strftime. But thanks for posting the round trip example. I was u

[issue6171] IDLE - TreeWidget draw and double-click (Ubuntu)

2015-01-07 Thread Saimadhav Heblikar
Saimadhav Heblikar added the comment: Behavior described in msg229434 is right. Tested on Ubuntu 14.04 64bit with Python version 3.5.0a, TkVersion=8.5 and TclVersion=8.5. -- ___ Python tracker <http://bugs.python.org/issue6

[issue23551] IDLE to provide menu link to PIP gui.

2015-09-05 Thread Saimadhav Heblikar
Saimadhav Heblikar added the comment: Hi Terry, Unfortunately, I had to perform a system reinstall, which wiped out the patch. I dont mind doing it again, but it might take until the weekend to complete. Also, now my questions from earlier are answered, it should be easier

[issue25059] Mistake in input-output tutorial regarding print() seperator

2015-09-10 Thread Saimadhav Heblikar
New submission from Saimadhav Heblikar: Feel free to make changes to the patch if you want to improve the sentence structure. -- assignee: docs@python components: Documentation messages: 250390 nosy: docs@python, sahutd priority: normal severity: normal status: open title: Mistake in

[issue25059] Mistake in input-output tutorial regarding print() seperator

2015-09-10 Thread Saimadhav Heblikar
Changes by Saimadhav Heblikar : Added file: http://bugs.python.org/file40428/issue25059 ___ Python tracker <http://bugs.python.org/issue25059> ___ ___ Python-bugs-list m

[issue25059] Mistake in input-output tutorial regarding print() seperator

2015-09-10 Thread Saimadhav Heblikar
Saimadhav Heblikar added the comment: Agreed with both David Murray and Eric. -- ___ Python tracker <http://bugs.python.org/issue25059> ___ ___ Python-bugs-list m

[issue23581] unittest.mock.MagicMock doesn't support matmul (@) operator

2015-03-05 Thread Saimadhav Heblikar
Changes by Saimadhav Heblikar : -- nosy: +sahutd ___ Python tracker <http://bugs.python.org/issue23581> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue23551] IDLE to provide menu options for using PIP

2015-03-05 Thread Saimadhav Heblikar
Saimadhav Heblikar added the comment: Hi, I would like to work on this. Give me a day or two to come up with my design plan, for feedback. Let me know please if this feature addition is being considered. -- nosy: +sahutd ___ Python tracker <h

[issue23551] IDLE to provide menu options for using PIP

2015-03-07 Thread Saimadhav Heblikar
Saimadhav Heblikar added the comment: For the initial version here is what I plan to code: A single package manager entry in a suitable menu. This would open a dialog window containing options for (inspired from msg236906). 1. Show installed packages(freeze) This menu would have

[issue23551] IDLE to provide menu options for using PIP

2015-03-14 Thread Saimadhav Heblikar
Saimadhav Heblikar added the comment: The proof of concept is almost ready. I have a couple of questions to anyone familiar with pip api (and on windows for question 2) 1. Is a restart of the interpreter absolutely required for pip.operations.freeze.freeze() to reflect changes?(install

[issue23665] Provide IDLE menu option to set command-line arguments

2015-03-16 Thread Saimadhav Heblikar
Saimadhav Heblikar added the comment: http://bugs.python.org/issue5680 Also had submitted a patch for it. Could you post your review there? (I was learning the CPython style then, so excuse obvious mistakes :) ) -- nosy: +sahutd ___ Python tracker

<    1   2