[issue2704] IDLE: Patch to make PyShell behave more like a Terminal interface

2013-03-23 Thread Todd Rovito

Todd Rovito added the comment:

Roger,
   I took Terminal.py and copied it into Lib/idlelib for the 3.4 branch.  The 
extension started just fine but when I toggle it off under the options menu the 
arrow keys still go through history.  Basically on my Mac I see no difference 
between the extension being turned on/off when I use Terminal.py from idle-X 
version 1.11.2.  I am not sure why when I toggle the extension off I can't move 
around the shell window with my cursor keys like the original patch allowed me 
to do.  Hopefully this helps.  Thanks.

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue2704
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue17511] Idle find function closes after each find operation

2013-03-23 Thread Todd Rovito

Todd Rovito added the comment:

If it helps I have confirmed that this patch works great on Python 3.4 and 
Python 2.7 on the Mac.  The code looks very clean and provides a simple fix.

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue17511
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue2704] IDLE: Patch to make PyShell behave more like a Terminal interface

2013-03-23 Thread Todd Rovito

Todd Rovito added the comment:

After looking at the code some more I realized that I didn't have my 
configuration file configured correctly.  The toggle was not working because I 
left this out of my config-extensions.def file:
[Terminal_cfgBindings]
terminal-toggle=

Now it is working great without that variable the toggling does not work.

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue2704
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



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

2013-03-23 Thread Todd Rovito

New submission from Todd Rovito:

I think it could be very helpful to add line numbers along the left side of the 
editor window.  The feature could be toggled on/off easily enough.  This was 
mentioned in the Invent with Python blog about IDLE so obviously other people 
would like the feature.

--
components: IDLE
messages: 185115
nosy: Todd.Rovito
priority: normal
severity: normal
status: open
title: IDLE: Add an option to show line numbers along the left side of the 
editor window, and have it enabled by default.
type: enhancement
versions: Python 2.7, Python 3.1, Python 3.2, Python 3.3, Python 3.4

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue17535
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



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

2013-03-23 Thread Todd Rovito

Changes by Todd Rovito rovit...@gmail.com:


--
nosy: +roger.serwy

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue17535
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue13504] Meta-issue for Invent with Python IDLE feedback

2013-03-23 Thread Todd Rovito

Todd Rovito added the comment:

http://bugs.python.org/issue17535 covers issue 12 Add an option to show line 
numbers along the left side of the editor window, and have it enabled by 
default.

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue13504
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue13802] IDLE Prefernces/Fonts: use multiple alphabets in examples

2013-03-23 Thread Todd Rovito

Changes by Todd Rovito rovit...@gmail.com:


--
nosy: +Todd.Rovito

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue13802
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue17390] display python version on idle title bar

2013-03-23 Thread Todd Rovito

Changes by Todd Rovito rovit...@gmail.com:


--
nosy: +Todd.Rovito

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue17390
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue2704] IDLE: Patch to make PyShell behave more like a Terminal interface

2013-03-22 Thread Todd Rovito

Changes by Todd Rovito rovit...@gmail.com:


--
nosy: +Todd.Rovito

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue2704
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue2704] IDLE: Patch to make PyShell behave more like a Terminal interface

2013-03-22 Thread Todd Rovito

Todd Rovito added the comment:

Made minor modifications to Roger's Terminal.py to get the extension to work 
with Python 3.4.  This is an excellent extension as a user can toggle it on/off 
from the Options menu. The up/down arrow keys now allow a user to scroll 
through history but the meta-n meta-p keys still work offering the best of both 
worlds.  If a user wants to scroll around the screen with the arrow keys simply 
turn off the extension from the option bar and start moving the cursor with the 
arrow keys.  Excellent work Roger!

-Changed the original variable from enabled to enable to match other extensions
-Tested it on Mac OS X with 3.4 and it works PERFECT!
-Added a small if statement to pull in the right tkinter import based on 
sys.version

--
Added file: 
http://bugs.python.org/file29551/2704IDLEMakeShellBehaveLikeTerminalFor3dot4.patch

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue2704
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue2704] IDLE: Patch to make PyShell behave more like a Terminal interface

2013-03-22 Thread Todd Rovito

Todd Rovito added the comment:

I tested the patch on Linux CentOS 6.x and it seems to work.  Now if we could 
only get somebody to test on Windows?

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue2704
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue16278] os.rename documentation slightly inaccurate

2013-03-10 Thread Todd Rovito

Todd Rovito added the comment:

V3 added which includes much shorter variable names and a cleanup of the patch. 
 I still need to test on Windows.

--
Added file: http://bugs.python.org/file29370/16278OSRenameDocsTestV3.patch

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue16278
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue16278] os.rename documentation slightly inaccurate

2013-03-10 Thread Todd Rovito

Todd Rovito added the comment:

Thanks for the feedback Vitaliy Stepanov that helped alot with the version 3 
patch.

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue16278
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue16278] os.rename documentation slightly inaccurate

2013-03-10 Thread Todd Rovito

Todd Rovito added the comment:

Made some very minor changes to get patch to work on Windows.  Had issues with 
line ending differences between Unix and Windows. I fixed it so line endings 
won't be an issue and tested patch on Windows, Linux, and OS X.  

Please feel free to supply feedback or commit.  Thanks.

--
Added file: http://bugs.python.org/file29371/16278OSRenameDocsTestV4.patch

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue16278
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue16278] os.rename documentation slightly inaccurate

2013-03-09 Thread Todd Rovito

Todd Rovito added the comment:

Version 2 of the patch includes many improvements most of which were suggested 
by Ezio making the patch a much higher quality.  The patch is very WET at this 
point.  I still need to test on Windows which I plan to do as soon as I can get 
my Windows partition in order.  

Thanks for all the great feedback!

--
Added file: http://bugs.python.org/file29362/16278OSRenameDocsTestV2.patch

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue16278
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue17382] debugging with idle: current line not highlighted

2013-03-08 Thread Todd Rovito

Todd Rovito added the comment:

Dirk,
   I think this issue is already documented as an issue but I will have to find 
it in the tracker.

--
nosy: +Todd.Rovito

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue17382
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue16278] os.rename documentation slightly inaccurate

2013-03-04 Thread Todd Rovito

Todd Rovito added the comment:

Ezio,
  Thank you or the feedback I will continue to polish the test cases.  As far 
as the documentation I really like the table and find it easy to read but I 
could go either way.  If you read the history of this issue other Python Core 
Developers asked to write test cases and make sure the documentation matches 
the test cases.  It makes no difference to me I just want to contribute  
Which approach will produce the best results for the Python community? I think 
the table is a good compromise.

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue16278
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue16278] os.rename documentation slightly inaccurate

2013-03-03 Thread Todd Rovito

Changes by Todd Rovito rovit...@gmail.com:


Removed file: http://bugs.python.org/file27890/OSRename_test_os_3point4.patch

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue16278
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue16278] os.rename documentation slightly inaccurate

2013-03-03 Thread Todd Rovito

Changes by Todd Rovito rovit...@gmail.com:


Removed file: http://bugs.python.org/file28071/OSRenameDocs3point4.patch

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue16278
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue16278] os.rename documentation slightly inaccurate

2013-03-03 Thread Todd Rovito

Todd Rovito added the comment:

Combined the test cases and document changes into a single patch.  As suggested 
by Mr. Terry Reedy I used a table and removed the text.  The table still needs 
some work but it is a good start.  As suggested by Mr. Jerdonek I tried to make 
the test cases WETter by setting up the files and directories one time in the 
setup method then only changing that setup in the actual test case only if 
needed.  

This patch needs still needs some work but I wanted people to know I had not 
quit yet.  It still needs to be tested on Windows, which I will do ASAP.  
Thanks.

--
Added file: http://bugs.python.org/file29301/16278OSRenameDocsTest.patch

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue16278
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue16278] os.rename documentation slightly inaccurate

2013-02-18 Thread Todd Rovito

Todd Rovito added the comment:

Over the weekend I caught this terrible cold and have not been able to work on 
this issue much.  Hopefully I can complete by next weekend 2/25/2013 thanks for 
your understanding.

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue16278
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue16278] os.rename documentation slightly inaccurate

2013-02-14 Thread Todd Rovito

Todd Rovito added the comment:

Thanks Terry and Chris you guys have supplied great feedback.  I will work on 
the issue and try to get a new patch updated by end of the weekend (2/18/13).

Sent from my iPhone

On Feb 13, 2013, at 11:56 PM, Terry J. Reedy rep...@bugs.python.org wrote:

 
 Terry J. Reedy added the comment:
 
 directory name.Yet a needs spaces after '.'.
 
 The text is decent English and clear enough sentence by sentence, but the 
 reality and hence the text as a whole is confusing.
 
 I wonder if it would be possible to make a little table
 
dest
   
 Src file empty-dirnon-empty-dir
 -
 file |||
 
 dir
 
 with the behavior for each combination indicated, 'success' or 'OSError', 
 with two lines prefixed with Unix, Win where they differ. Then the 
 differences would be much more obvious.
 
 (A separate issue: Patch says that Windows currently raises a different error 
 in one situation. I think it would be better -- in a future version -- if 
 that were caught and reraised as OSError also.)
 
 --
 
 ___
 Python tracker rep...@bugs.python.org
 http://bugs.python.org/issue16278
 ___

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue16278
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue16278] os.rename documentation slightly inaccurate

2013-02-13 Thread Todd Rovito

Todd Rovito added the comment:

Chris,
   I first verified the issue then created some wording and you pointed out 
that we needed test cases so I created a bunch of test cases.  As you pointed 
out I count 2*3*2=12 possibilities to check (excluding src and dst being on 
different filesystems): so I created 16 test cases then discovered that the 
behavior is different on Windows and Unix so all together there are 32 test 
cases.  Your last comment about the test cases being Dry didn't make sense to 
me.  If you provide specific feedback I would be glad to work on the issue.  
The test cases are designed to make sure that the documented behavior is 
actually how Python performs.  It made the most sense to me to put together two 
patches one for the test cases and another for the documentation, but maybe 
that has confused everybody?  If it would help I could submit a single patch.  
OSRenameCombinations.py was just for reference to prove to myself that I got 
all the possible test cases.

I am a fairly new Python contributor and this is my first attempt at writing 
test cases so I could be missing something.  Thanks for the mentorship and the 
time required for a little extra guidance.

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue16278
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue16278] os.rename documentation slightly inaccurate

2013-02-13 Thread Todd Rovito

Todd Rovito added the comment:

Chris,
  Thanks for the clarification.  I thought you were telling me my test cases 
were dry as in dry humorI will read-up on the dry concept and see what I 
can do to consolidate plus I will combine the patches.  Initially I am thinking 
I could collapse all the test cases into two functions each for their 
respective operating system.  Would that be ok?

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue16278
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue16278] os.rename documentation slightly inaccurate

2013-02-12 Thread Todd Rovito

Todd Rovito added the comment:

This is a gentle ping of this issue.  Can somebody please review and let me 
know what needs to be done to get this committed?  I did test the patch on 
2/12/2013 and it seems to work from the latest 3.4.  Thanks!

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue16278
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue16893] Create IDLE help.txt from Doc/library/idle.rst

2013-01-12 Thread Todd Rovito

Todd Rovito added the comment:

Andrew,
Zachary and I worked on another issue together to sync idle.rst with 
help.txt here:
http://bugs.python.org/issue5066

Issue 5066 is ready for commit if you have time by the way.  Thanks!

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue16893
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue16893] Create IDLE help.txt from Doc/library/idle.rst

2013-01-10 Thread Todd Rovito

Todd Rovito added the comment:

I think getting this issue fixed makes sense, it would save time and remove 
duplication.

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue16893
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue5066] IDLE documentation for Unix obsolete/incorrect

2013-01-08 Thread Todd Rovito

Todd Rovito added the comment:

Thanks Senthil but I don't deserve all the credit this issue is a team effort 
with lots of help from Zach, Éric, and Ezio.  All of which have improved the 
patch's quality a great deal.  Hopefully we can address the issues then let you 
make the commit soon.

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue5066
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue5066] IDLE documentation for Unix obsolete/incorrect

2013-01-08 Thread Todd Rovito

Todd Rovito added the comment:

I took all the comments and created a new patch version 4 which should address 
all the issues.  Thanks for the excellent review and support from everybody.  I 
think this patch is a much higher quality now.

--
Added file: 
http://bugs.python.org/file28643/5066IDLEocumentationforUnixObsoleteIncorrectVersion4.patch

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue5066
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue16868] Python Developer Guide: Include a reminder to ping bug report if not reviewed in timely manner

2013-01-07 Thread Todd Rovito

Todd Rovito added the comment:

Ok I changed the time to one month...now the patch reads:
To begin with, please be patient! There are many more people submitting 
patches than there are people capable of reviewing your patch. Getting your 
patch reviewed requires a reviewer to have the spare time and motivation to 
look at your patch (we cannot force anyone to review patches). If your patch 
has not received any notice from reviewers (i.e., no comment made) after one 
month, first “ping” the issue on the issue tracker to remind the nosy list that 
the patch needs a review. After the issue has been “pinged” and if you don’t 
get a response after a few days then you may email python-...@python.org asking 
for someone to review your patch.

--
Added file: 
http://bugs.python.org/file28611/16868PythonDeveloperGuidePingIssueBeforeEmailingPython-devV3.patch

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue16868
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue16868] Python Developer Guide: Include a reminder to ping bug report if not reviewed in timely manner

2013-01-07 Thread Todd Rovito

Changes by Todd Rovito rovit...@gmail.com:


Removed file: 
http://bugs.python.org/file28573/16868PythonDeveloperGuidePingIssueBeforeEmailingPython-dev.patch

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue16868
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue16868] Python Developer Guide: Include a reminder to ping bug report if not reviewed in timely manner

2013-01-07 Thread Todd Rovito

Changes by Todd Rovito rovit...@gmail.com:


Removed file: 
http://bugs.python.org/file28603/16868PythonDeveloperGuidePingIssueBeforeEmailingPython-devV2.patch

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue16868
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue5066] IDLE documentation for Unix obsolete/incorrect

2013-01-07 Thread Todd Rovito

Todd Rovito added the comment:

Zachary,
   I like your idea about joining idle.rst with help.txt but I think that 
should be covered under a separate bug issue.  The way I see it this bug is 
about fixing the current documentation.  So I suggest you open up a new issue 
and get people's take on it.  I think a parser could be run at installation to 
convert idle.rst to help.txt or maybe IDLE could be modified to simply render 
idle.rst correctly.  I am not sure what the best approach will be.

PS Thanks for the review I should have your suggested changes integrating into 
a new patch today.

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue5066
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue5066] IDLE documentation for Unix obsolete/incorrect

2013-01-07 Thread Todd Rovito

Todd Rovito added the comment:

Zachary,
   Thanks for your excellent review  Your feedback was very helpful for 
making the patch even better.

--
Added file: 
http://bugs.python.org/file28626/5066IDLEocumentationforUnixObsoleteIncorrectVersion3.patch

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue5066
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue5066] IDLE documentation for Unix obsolete/incorrect

2013-01-07 Thread Todd Rovito

Todd Rovito added the comment:

Based on Zachary's comments I have uploaded a new version of the patch which is 
version 3.

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue5066
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue16868] Python Developer Guide: Include a reminder to ping bug report if not reviewed in timely manner

2013-01-06 Thread Todd Rovito

Todd Rovito added the comment:

I agree with Meador it should be a specific amount of time.  As a beginner at 
contributing to Python I thought substantial amount of time meant one month 
but it depends on interpretation.  I think making it very specific makes the 
documentation more clear.  Included in the new patch are the other suggestions 
made by Mr. Jerdonek.  Thanks for the feedback!

--
Added file: 
http://bugs.python.org/file28603/16868PythonDeveloperGuidePingIssueBeforeEmailingPython-devV2.patch

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue16868
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue5066] IDLE documentation for Unix obsolete/incorrect

2013-01-04 Thread Todd Rovito

Todd Rovito added the comment:

A ping on this bug since it has not had any forward movement.  Can somebody 
please review and or commit?  Thanks.

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue5066
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue5066] IDLE documentation for Unix obsolete/incorrect

2013-01-04 Thread Todd Rovito

Todd Rovito added the comment:

Thanks much appreciated!

Sent from my iPhone

On Jan 4, 2013, at 1:07 PM, Zachary Ware rep...@bugs.python.org wrote:

 
 Zachary Ware added the comment:
 
 Hi Todd, I can't commit, but I have a review in the works for you.
 
 --
 nosy: +zach.ware
 
 ___
 Python tracker rep...@bugs.python.org
 http://bugs.python.org/issue5066
 ___

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue5066
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue16868] Python Developer Guide: Include a reminder to ping bug report if not reviewed in timely manner

2013-01-04 Thread Todd Rovito

New submission from Todd Rovito:

The Python Developer Guide in section 3.3 about the life cycle of a 
patch/review process makes no mention that a bug should be pinged first 
before posting to the python-...@python.org email list requesting a review.  

For more information see this thread on the Python-Dev email list: 
http://mail.python.org/pipermail/python-dev/2013-January/123453.html

--
assignee: docs@python
components: Documentation
messages: 179109
nosy: Todd.Rovito, docs@python
priority: normal
severity: normal
status: open
title: Python Developer Guide: Include a reminder to ping bug report if not 
reviewed in timely manner
type: behavior
versions: Python 3.4

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue16868
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue16868] Python Developer Guide: Include a reminder to ping bug report if not reviewed in timely manner

2013-01-04 Thread Todd Rovito

Changes by Todd Rovito rovit...@gmail.com:


--
components: +Devguide -Documentation
nosy: +ezio.melotti

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue16868
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue16868] Python Developer Guide: Include a reminder to ping bug report if not reviewed in timely manner

2013-01-04 Thread Todd Rovito

Todd Rovito added the comment:

Here is a suggested patch with help from R. David Murray:
To begin with, please be patient! There are many more people submitting 
patches than there are people capable of reviewing your patch. Getting your 
patch reviewed requires a reviewer to have the spare time and motivation to 
look at your patch (we cannot force anyone to review patches). If your patch 
has not received any notice from reviewers (i.e., no comment made) after a 
substantial amount of time first “ping” the issue on the issue tracker to 
remind the nosy list that the patch needs a review. It is possible that the 
nosy committers have just forgotten about the issue. After the issue has been 
“pinged” and if you don’t get a response after a few days then you may email 
python-...@python.org asking for someone to review your patch.

--
keywords: +patch
Added file: 
http://bugs.python.org/file28573/16868PythonDeveloperGuidePingIssueBeforeEmailingPython-dev.patch

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue16868
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue5066] IDLE documentation for Unix obsolete/incorrect

2012-11-27 Thread Todd Rovito

Todd Rovito added the comment:

Version 2 of the patch change include:
-help.txt removed all tabs and replaced with spaces, as suggested by Roger
-help.txt re-inserted the section on running IDLE without a subprocess as 
suggested by Roger
-Added a note on line 162 (idle.rst) about how the Python Community standard is 
to use spaces and not tabs as suggested by ezio
-Line 340 (idle.rst) where the Emacs bindings are rendered seemed to work fine 
on my computer without the spaces but I think ezio is correct spaces should be 
present so I added them
-Line 354 (idle.rst): are restricted to four spaces due to TCL/Tk 
issues.)s/issues/limitations/ so I replaced issues with limitations

Thanks for the feedback Roger and ezio!

--
Added file: 
http://bugs.python.org/file28141/5066IDLEocumentationforUnixObsoleteIncorrectVersion2.patch

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue5066
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue5066] IDLE documentation for Unix obsolete/incorrect

2012-11-27 Thread Todd Rovito

Todd Rovito added the comment:

For version 2 of the patch 
-Line 340 (idle.rst) where the Emacs bindings are rendered seemed to work fine 
on my computer without the spaces but I think ezio is correct spaces should be 
present so I added them

**SHOULD BE**
-Line 340 (idle.rst) where the Emacs bindings are rendered seemed to work fine 
on my computer without the empty line between entries but I think ezio is 
correct empty lines should be present so I added empty lines just to be safe

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue5066
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue5066] IDLE documentation for Unix obsolete/incorrect

2012-11-26 Thread Todd Rovito

Todd Rovito added the comment:

This patch is an extensive refactoring of help.txt and idle.rst. The first 
thing I did was merge issue5066.patch from jesstess into the current idle.rst 
file, because the original patch from jesstess was so old it had to be merged 
by hand into the 3.4 source code.  Then I compared what the merge document said 
with the actual menus of IDLE and made several corrections because of missing 
menu options.  Finally I refactored the help.txt based on idle.rst and created 
the resulting patch. Several capitalization's were fixed along with many 
inconsistencies between the two files.  

I have not tested on 2.7 only 3.4.  My plan is to test with 2.7 and create 
another patch by end of the week 12/2/2012.

--
versions: +Python 3.4 -Python 2.7, Python 3.2, Python 3.3
Added file: 
http://bugs.python.org/file28138/5066IDLEocumentationforUnixObsoleteIncorrect.patch

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue5066
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue5066] IDLE documentation for Unix obsolete/incorrect

2012-11-24 Thread Todd Rovito

Changes by Todd Rovito rovit...@gmail.com:


--
nosy: +Todd.Rovito

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue5066
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue5066] IDLE documentation for Unix obsolete/incorrect

2012-11-24 Thread Todd Rovito

Todd Rovito added the comment:

This is a good patch but it is rather out of date and won't apply.  I will 
patch the patch and maybe somebody can apply it this time.  Expect a new patch 
by 11/26/2012.

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue5066
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue16278] os.rename documentation slightly inaccurate

2012-11-21 Thread Todd Rovito

Todd Rovito added the comment:

Attached is patch with the final formatting for the documentation updates. I 
fixed the :exc:`OSError` problems that I had before and used indents to denote 
Unix behavior VS Windows behavior. Please let me know if I can do anything else 
to help get this issue resolved.  Thanks!

--
Added file: http://bugs.python.org/file28071/OSRenameDocs3point4.patch

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue16278
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue16278] os.rename documentation slightly inaccurate

2012-11-21 Thread Todd Rovito

Changes by Todd Rovito rovit...@gmail.com:


Removed file: http://bugs.python.org/file27640/OSRenameTest3point4.patch

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue16278
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue16278] os.rename documentation slightly inaccurate

2012-11-07 Thread Todd Rovito

Todd Rovito added the comment:

Here is a draft suggestion for the documentation change, not all the formatting 
is worked out:

.. function:: rename(src, dst, *, src_dir_fd=None, dst_dir_fd=None)

   Rename the file or directory *src* to *dst*. If *src* exists as either
   a file or directory and *dst* does not exist the rename will occur with
   no error raised.  In some cases the rename function will behave
   differently across platforms which are noted below. In all cases
   if *src* does not exist :exc: 'OSError' will be raised.

   Unix
   If *dst* exists and is a file, it will be replaced silently if the user
   has permission and src is a file.  If *src* is a directory and *dst* is a
   file :exc: 'OSError' will be raised.  In the case where *src* is a
   directory and *dst* is a empty directory the rename will occur and the
   *src* directory name will overwrite the *dst* directory name.Yet a special
   case is noted where *src* is a directory and *dst* is a non-empty directory
   the rename will not occur and :exc: `OSError` will be raised.  

   Windows
   If *src* is a file and *dst* exists either as a file or directory :exc:
   'OSError` will be raised and the rename will not occur.  In the case where
   *src* is a directory, either empty or not empty, and *dst* exists as a
   file or not empty directory :exc: `OSError` will be raised.  If *src* is
   a directory, either empty or not empty, and *dst* is a empty directory
   then :exc: `FileExistsError` will be raised.


   If successful, the renaming will be an atomic operation (this is a POSIX
   requirement).
   
   This function can support specifying *src_dir_fd* and/or *dst_dir_fd* to
   supply :ref:`paths relative to directory descriptors dir_fd`.

   If you want cross-platform overwriting of the destination, use
   :func:`replace`.

   Availability: Unix, Windows.

   .. versionadded:: 3.3
  The *src_dir_fd* and *dst_dir_fd* arguments.

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue16278
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue16278] os.rename documentation slightly inaccurate

2012-11-06 Thread Todd Rovito

Todd Rovito added the comment:

Chris,
   That is an excellent suggestion.  I modified my OSRenameCombinations.py 
program and attached.  This program prints a table with the src parameters as 
columns and the dst as rows.  Hopefully it will show up ok in the bug tracker.


For Unix
  src_file   
src_directory_emptysrc_directory_not_empty
src_file_or_directory_not_exist 
dst_file_exist rename overwrite   raises OSError
 raises OSError raises OSError 
dst_not_exist  rename rename
 rename raises OSError 
dst_directory_emptyraises OSError rename overwrite  
 rename overwrite   raises OSError 
dst_directory_not_emptyraises OSError raises OSError
 raises OSError raises OSError 
For Windows
  src_file   
src_directory_emptysrc_directory_not_empty
src_file_or_directory_not_exist 
dst_file_exist raises OSError raises OSError
 raises OSError raises OSError 
dst_not_exist  rename rename
 rename raises OSError 
dst_directory_emptyraises OSError raises 
FileExistsError raises FileExistsError raises OSError   
  
dst_directory_not_emptyraises OSError raises OSError
 raises OSError raises OSError

--
Added file: http://bugs.python.org/file27915/OSRenameCombinations.py

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue16278
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue16278] os.rename documentation slightly inaccurate

2012-11-04 Thread Todd Rovito

Todd Rovito added the comment:

Attached is a patch for 16 test cases.  All 16 test cases have been tested on 
Windows 7, Mac OS X, and Linux they seem to function well.  Before this patch 
there was only a single test case for rename.  For each test case I used 
unittest.skipUnless to make sure the platform was one of the three that I 
tested for Windows 7, Mac OS X, or Linux.  These test cases demonstrate that 
the documentation is incorrect and perhaps a little fuzzy.  I plan to submit 
updates to the documentation in the coming days.  This patch is only for Python 
3.4 but I will backport to 2.7 in a few days.  


I wrote the following code to find all the combinations based on parameters of 
the function:

src = ['src_file','src_directory_empty', 'src_directory_not_empty', \
   'src_file_or_directory_not_exist']
dst = ['dst_file_exist','dst_not_exist','dst_directory_empty', \
'dst_directory_not_empty']

print Make sure you have functions in test_os for all of these
for index_src in range(0, len(src)):
for index_dst in range(0, len(dst)):
function_name = test_rename_ + src[index_src] + _ + \
dst[index_dst]
print function_name

--
versions:  -Python 2.7, Python 3.2, Python 3.3
Added file: http://bugs.python.org/file27890/OSRename_test_os_3point4.patch

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue16278
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue1207589] IDLE: Right Click Context Menu

2012-11-02 Thread Todd Rovito

Todd Rovito added the comment:

Ned,
  I respectfully disagree that this is not a new feature.  IDLE could always 
copy/cut/paste from the edit menu and it had a right click menu. All this patch 
does is add options to right click menu and call the same functions as the edit 
menu does.  I could be biased because I worked on the patch and I am a new 
contributor but I think Andrew's logic of commenting the patch makes sense.  
Python is a great scripting language but IDLE is really falling behind and it 
is often the first thing a user sees.  Thanks for your attention in this matter 
and I will respect any solution you and Amdrew come up with.

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue1207589
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue16278] os.rename documentation slightly inaccurate

2012-10-30 Thread Todd Rovito

Todd Rovito added the comment:

While writing test cases I discovered another conflict with the documentation.  
The phrase On Unix, if dst exists and is a file, it will be replaced silently 
if the user has permission and src is a file. is not correct.  According to 
the test cases I wrote in the attached patch see the method 
test_rename_src_file_dest_file_exists in the class FileTests the destination 
file is not replaced and the source file actually is removed.  I will seek 
advice from Python Core Mentorship to see if this is a bug or normal behavior. 

First time writing test cases so I hope I am on the right track.

--
Added file: http://bugs.python.org/file27804/OSRename_test_os.patch

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue16278
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue16278] os.rename documentation slightly inaccurate

2012-10-30 Thread Todd Rovito

Changes by Todd Rovito rovit...@gmail.com:


Removed file: http://bugs.python.org/file27804/OSRename_test_os.patch

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue16278
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue16278] os.rename documentation slightly inaccurate

2012-10-30 Thread Todd Rovito

Todd Rovito added the comment:

False alarm my test case was buggy.

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue16278
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue16278] os.rename documentation slightly inaccurate

2012-10-29 Thread Todd Rovito

Todd Rovito added the comment:

Over the weekend I verified the test cases are incomplete for Python 3.4.  
Inside of Lib/test/test_os.py is a class FileTests that contains a single 
function test_rename which seems to only check to make sure that the reference 
count for the first argument is not mis-handeled.  Nothing exists for the use 
case destination is a directory as described in the original bug.  I will 
attempt to create suggested test cases but as I am not the most familiar with 
Python's unit test framework it might take me some time, I estimate as long as 
11/6/2012.  If somebody comes along with more experience that can fix the bug 
please feel free to proceed.

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue16278
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue16278] os.rename documentation slightly inaccurate

2012-10-25 Thread Todd Rovito

Todd Rovito added the comment:

Thanks for the feedback!  Over the weekend I will make sure the documentation 
and test cases cover all possibilities.  I have not worked with test suite but 
I will do my best.

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue16278
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue16278] os.rename documentation slightly inaccurate

2012-10-20 Thread Todd Rovito

Changes by Todd Rovito rovit...@gmail.com:


--
nosy: +Todd.Rovito

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue16278
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue16278] os.rename documentation slightly inaccurate

2012-10-20 Thread Todd Rovito

Todd Rovito added the comment:

David,
   Thanks for your bug report. Indeed os.rename does not exhibit the same 
behavior as the documentation describes. 

For Python 3.4 here is the fix I came up with:
Rename the file or directory src to dst. If dst is a directory that is not 
empty, OSError will be raised. On Unix, if dst exists and is a file, it will be 
replaced silently if the user has permission and src is a file. On Unix, if src 
is a directory and dst is a file NotADirectoryError will be raised. The 
operation may fail on some Unix flavors if src and dst are on different 
filesystems. If successful, the renaming will be an atomic operation (this is a 
POSIX requirement). On Windows, if dst already exists, OSError will be raised 
even if it is a file.

I have attached a Python 3.4 patch for consideration.  This might not be the 
best phrasing so please feel free to offer alternatives.

--
keywords: +patch
Added file: http://bugs.python.org/file27640/OSRenameTest3point4.patch

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue16278
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue1207589] IDLE: Right Click Context Menu

2012-10-20 Thread Todd Rovito

Changes by Todd Rovito rovit...@gmail.com:


Removed file: 
http://bugs.python.org/file27615/RightClickContextMenuUpdatedFor3point4.patch

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue1207589
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue1207589] IDLE: Right Click Context Menu

2012-10-20 Thread Todd Rovito

Changes by Todd Rovito rovit...@gmail.com:


Removed file: 
http://bugs.python.org/file27616/RightClickContextMenuUpdatedFor2point7.patch

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue1207589
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue1207589] IDLE: Right Click Context Menu

2012-10-20 Thread Todd Rovito

Todd Rovito added the comment:

Same patch as before but updated the documentation and help.txt file for IDLE.  
This is for Python 2.7.

--
Added file: 
http://bugs.python.org/file27644/RightClickContextMenuUpdatedWithDocs2point7.patch

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue1207589
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue1207589] IDLE: Right Click Context Menu

2012-10-20 Thread Todd Rovito

Todd Rovito added the comment:

Same patch as before but updated the documentation and help.txt file for IDLE.  
This is for Python 3.4.

--
Added file: 
http://bugs.python.org/file27645/RightClickContextMenuUpdatedWithDocs3point4.patch

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue1207589
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue15869] IDLE: Include .desktop file and icon

2012-10-20 Thread Todd Rovito

Changes by Todd Rovito rovit...@gmail.com:


--
nosy: +Todd.Rovito

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue15869
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue15392] Create a unittest framework for IDLE

2012-10-20 Thread Todd Rovito

Changes by Todd Rovito rovit...@gmail.com:


--
nosy: +Todd.Rovito

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue15392
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue1283110] Give __len__() advice for don't know

2012-10-19 Thread Todd Rovito

Changes by Todd Rovito rovit...@gmail.com:


Removed file: http://bugs.python.org/file27605/DataModel__len__.patch

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue1283110
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue1283110] Give __len__() advice for don't know

2012-10-19 Thread Todd Rovito

Todd Rovito added the comment:

Changed the file name so it is clear that this patch goes with version 3.4.

--
Added file: 
http://bugs.python.org/file27624/RightClickContextMenuUpdatedFor3point4.patch

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue1283110
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue1283110] Give __len__() advice for don't know

2012-10-19 Thread Todd Rovito

Changes by Todd Rovito rovit...@gmail.com:


Removed file: 
http://bugs.python.org/file27624/RightClickContextMenuUpdatedFor3point4.patch

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue1283110
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue1283110] Give __len__() advice for don't know

2012-10-19 Thread Todd Rovito

Todd Rovito added the comment:

Used the right patch file name this time...

--
Added file: http://bugs.python.org/file27625/DataModel__len__3point4.patch

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue1283110
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue1283110] Give __len__() advice for don't know

2012-10-19 Thread Todd Rovito

Todd Rovito added the comment:

This patch is for Python 2.7.

--
versions: +Python 2.7
Added file: http://bugs.python.org/file27626/DataModel__len__2point7.patch

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue1283110
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue10405] IDLE breakpoint facility undocumented

2012-10-19 Thread Todd Rovito

Todd Rovito added the comment:

Nick,
   I agree some documentation is better than none. But somebody could do better 
I am not sure how to debug in IDLE.  I have taken your file and created a 2.7 
patch.

--
keywords: +patch
type:  - enhancement
versions:  -Python 3.1, Python 3.2
Added file: 
http://bugs.python.org/file27627/IDLEBreakPointDocumentation2point7.patch

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue10405
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue10405] IDLE breakpoint facility undocumented

2012-10-19 Thread Todd Rovito

Changes by Todd Rovito rovit...@gmail.com:


Removed file: 
http://bugs.python.org/file27627/IDLEBreakPointDocumentation2point7.patch

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue10405
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue10405] IDLE breakpoint facility undocumented

2012-10-19 Thread Todd Rovito

Todd Rovito added the comment:

This patch works for both Python 3.4 and Python 2.7, it is a very simple patch.

--
versions: +Python 3.4
Added file: http://bugs.python.org/file27628/IDLEBreakPointDocumentation.patch

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue10405
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue1207589] Right Click Context Menu

2012-10-18 Thread Todd Rovito

Changes by Todd Rovito rovit...@gmail.com:


--
nosy: +Todd.Rovito

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue1207589
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue10405] IDLE breakpoint facility undocumented

2012-10-18 Thread Todd Rovito

Changes by Todd Rovito rovit...@gmail.com:


--
nosy: +Todd.Rovito

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue10405
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue13884] IDLE 2.6.5 Recent Files undocks

2012-10-18 Thread Todd Rovito

Changes by Todd Rovito rovit...@gmail.com:


--
nosy: +Todd.Rovito

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue13884
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue13504] Meta-issue for Invent with Python IDLE feedback

2012-10-18 Thread Todd Rovito

Changes by Todd Rovito rovit...@gmail.com:


--
nosy: +Todd.Rovito

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue13504
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue13884] IDLE: Remove tear-off menu feature

2012-10-18 Thread Todd Rovito

Todd Rovito added the comment:

Terry,
   I would not miss the feature at all this is very old school Unix like and 
most people find it confusing.  At my job I tend to provide Python support to 
my co-workers and have had many questions about it. In addition I think #13504 
meta issue provides even more evidence that removing the tear off menus would 
be a good thing.  Something to consider with IDLE is it is often the first 
thing a user sees when using Python and first impressions count in most 
circumstances. IDLE could be much improved and Roger Serwy has a good start on 
improvements with his IdleX project.  Thanks for the review and I for one would 
appreciate this patch getting committed.

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue13884
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue1207589] IDLE: Right Click Context Menu

2012-10-18 Thread Todd Rovito

Todd Rovito added the comment:

I used taleinat's patch as the start for a patch that works with 3.4.  Lots of 
code was changed from 2010 to 2012 so I basically hand merged the patch into 
3.4.  This patch was tested with Python 3.4.0a0 on both Mac OS X and Linux.  As 
suggested by taleinat and Guilherme the shortcuts keys are not included in the 
context menu.

--
Added file: 
http://bugs.python.org/file27614/RightClickContextMenuUpdatedFor3point4.patch

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue1207589
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue1207589] IDLE: Right Click Context Menu

2012-10-18 Thread Todd Rovito

Changes by Todd Rovito rovit...@gmail.com:


Removed file: 
http://bugs.python.org/file27614/RightClickContextMenuUpdatedFor3point4.patch

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue1207589
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue1207589] IDLE: Right Click Context Menu

2012-10-18 Thread Todd Rovito

Todd Rovito added the comment:

This time I ran make patchcheck on the patch and it corrected a single white 
space.

I used taleinat's patch as the start for a patch that works with 3.4.  Lots of 
code was changed from 2010 to 2012 so I basically hand merged the patch into 
3.4.  This patch was tested with Python 3.4.0a0 on both Mac OS X and Linux.  As 
suggested by taleinat and Guilherme the shortcuts keys are not included in the 
context menu.

--
Added file: 
http://bugs.python.org/file27615/RightClickContextMenuUpdatedFor3point4.patch

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue1207589
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue1207589] IDLE: Right Click Context Menu

2012-10-18 Thread Todd Rovito

Todd Rovito added the comment:

I used taleinat's patch as the start for a patch that works with 2.7.  Lots of 
code was changed from 2010 to 2012 so I basically hand merged the patch into 
2.7.  This patch was tested with Python 2.7.3 on both Mac OS X and Linux.  As 
suggested by taleinat and Guilherme the shortcuts keys are not included in the 
context menu.

--
versions: +Python 2.7 -Python 3.4
Added file: 
http://bugs.python.org/file27616/RightClickContextMenuUpdatedFor2point7.patch

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue1207589
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue1207589] IDLE: Right Click Context Menu

2012-10-18 Thread Todd Rovito

Todd Rovito added the comment:

Changed the version to make it clear this issue as a patch for 3.4 and 2.7.

--
versions: +Python 3.4

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue1207589
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue1283110] Give __len__() advice for don't know

2012-10-17 Thread Todd Rovito

Changes by Todd Rovito rovit...@gmail.com:


Removed file: http://bugs.python.org/file27589/DataModel__len__.patch

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue1283110
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue1283110] Give __len__() advice for don't know

2012-10-17 Thread Todd Rovito

Todd Rovito added the comment:

New patch with a better reference to the source for the test case.  This was 
suggested by PythonMentors list.  I think the patch improves the documentation. 
 This works on Python 3.4.

--
Added file: http://bugs.python.org/file27605/DataModel__len__.patch

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue1283110
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue12913] Add a debugging howto

2012-10-16 Thread Todd Rovito

Todd Rovito added the comment:

I think this is an excellent idea.  How about putting in some advanced 
debugging with IDLE?  For example I have read somewhere that IDLE lets you set 
break points but the documentation for IDLE OS not that clear on debugging.

--
nosy: +Todd.Rovito

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue12913
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue9583] Document startup option/environment interaction

2012-10-15 Thread Todd Rovito

Todd Rovito added the comment:

Applies to Python 3.4 in development and Python 2.7.  I recently ran into a 
similar conflict where I was overriding a environment variable with a command 
line option and didn't realize it.  I first checked the documentation and 
noticed that it was not clear.  Then I found this bug report and made a patch 
which is attached.  The patch iterates what Terry Reedy suggested which I 
thought made the documentation clearer.  This is my first patch to Python I 
hope it is helpful as Python has served me well over the years.

--
keywords: +patch
nosy: +Todd.Rovito
versions: +Python 3.4 -Python 3.1, Python 3.2
Added file: http://bugs.python.org/file27588/EnvironmentVariables.patch

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue9583
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue1283110] Give __len__() advice for don't know

2012-10-15 Thread Todd Rovito

Todd Rovito added the comment:

For Python 3.4 attached is a patch as suggested by Raymond Hettinger.  My 
suggestion is to put the patch in Doc/reference/datamodel.rst because if a user 
searches google.com for __len__ this is the first link in the list.  I think 
this extra information is a valuable addition to the documentation.

--
keywords: +patch
nosy: +Todd.Rovito
versions: +Python 3.4
Added file: http://bugs.python.org/file27589/DataModel__len__.patch

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue1283110
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue9583] Document startup option/environment interaction

2012-10-15 Thread Todd Rovito

Todd Rovito added the comment:

After another review I decided to submit a newer patch that uses a comma so I 
think the documentation flows better.

--
type:  - enhancement
Added file: http://bugs.python.org/file27590/EnvironmentVariables.patch

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue9583
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue8536] Support new features of ZLIB 1.2.4

2010-08-01 Thread Todd Rovito

Changes by Todd Rovito rovit...@gmail.com:


--
nosy: +Todd.Rovito

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue8536
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



<    1   2