Change by Todd Rovito :
--
nosy: +Todd.Rovito
___
Python tracker
<https://bugs.python.org/issue31739>
___
___
Python-bugs-list mailing list
Unsubscribe:
Todd Rovito added the comment:
"What is standard in other linex and mac apps?"
-On Mac OS X 10.8.3 TextEdit I get the replacement behavior
-On Linux CentOS 6.4 gedit I get the replacement behavior
-On IDLE under the latest 3.4 pull I get the replacement behavior with Max OS X
10.8.
Todd Rovito added the comment:
Ping!!!
I have not heard anything about this patch so I wanted to ping it to get more
feedback. Thanks!
--
___
Python tracker
<http://bugs.python.org/issue16
Todd Rovito added the comment:
I was wondering does it make sense to commit this patch since it is similar to
http://bugs.python.org/issue14146 then put the issue in the pending state as we
wait for the TK/TCL fix? It seems more consistent to me since this issue is
basically the same
Todd Rovito added the comment:
I haver verified Roger's patch does indeed fix the problem on Linux CentOS 6.4
with IDLE 3.4.
The Linux situation is complex. Basically as I see it over the years pure X11
applications are becoming extinct and most developers either use GTK (for
GNOME)
Todd Rovito added the comment:
Patch does indeed apply and I get good results! The patch is well done and
provides a nice example on how to write unit tests.
+1 for making the commit from me
R. David Murray you used the patch command while I used "hg import --no-commit
mywork.patc
Changes by Todd Rovito :
--
nosy: +Todd.Rovito
___
Python tracker
<http://bugs.python.org/issue2053>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Todd Rovito :
--
nosy: +Todd.Rovito
___
Python tracker
<http://bugs.python.org/issue7136>
___
___
Python-bugs-list mailing list
Unsubscribe:
Todd Rovito added the comment:
Roger's patch works but the documentation has changed since he made the patch
back in 2011. So I patched the patch and hope this very simple patch will get
committed. I will work on a patch for 2.7 next.
Today I was teaching a student on how to use Python
Todd Rovito added the comment:
Same patch but for Python 2.7.5. I just updated the documentation from Roger's
excellent patch.
--
versions: +Python 2.7
Added file:
http://bugs.python.org/file30419/7136FileMenuConfusionV22point7.patch
___
P
Changes by Todd Rovito :
--
nosy: +Todd.Rovito
___
Python tracker
<http://bugs.python.org/issue18103>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Todd Rovito :
--
nosy: +Todd.Rovito
___
Python tracker
<http://bugs.python.org/issue18104>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Todd Rovito :
--
nosy: +Todd.Rovito
___
Python tracker
<http://bugs.python.org/issue18189>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Todd Rovito :
--
nosy: +philwebster
___
Python tracker
<http://bugs.python.org/issue18189>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Todd Rovito :
--
nosy: +terry.reedy
___
Python tracker
<http://bugs.python.org/issue18189>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Todd Rovito :
--
nosy: +JayKrish
___
Python tracker
<http://bugs.python.org/issue18226>
___
___
Python-bugs-list mailing list
Unsubscribe:
New submission from Todd Rovito:
Continuing the IDLE unittest framework initiated in
http://bugs.python.org/issue15392.
A small unit test for IDLE FormatParagraph.py. This patch introduces a test
module named test_format_paragraph.py inside Lib/idlelib/idle_test, considering
the guidance in
Todd Rovito added the comment:
PING
It has been a month since Roger's last comment on the patch looking good, can
somebody please commit or post feedback. Thanks.
--
nosy: +terry.reedy
___
Python tracker
<http://bugs.python.org/i
Todd Rovito added the comment:
Yes I have a Mac and I am glad to help, so I gave it a test run tonight. The
first thing I did was apply the patch then I ran idle from the console like so:
./python.exe Lib/idlelib/idle.py
For testing I used a simple print command to print to stderr
Todd Rovito added the comment:
Here is a uncompleted patch but works for the most part. I thought I would
post just in case somebody wanted to provide me comments on the general
direction of the patch. The naming might have to change but this follows Terry
Reedy's model of monkey pat
Changes by Todd Rovito :
--
nosy: +Todd.Rovito
___
Python tracker
<http://bugs.python.org/issue18292>
___
___
Python-bugs-list mailing list
Unsubscribe:
Todd Rovito added the comment:
Terry I am sorry the push didn't go smooth. I thought I had checked the patch
with 2.7 and 3.4 and it applied for me but maybe I missed something? For sure
I didn't check 3.3 but from here on out I will. Awhile ago I worked on a issue
to synch
Todd Rovito added the comment:
Terry,
Thank you for the feedback this helps me alot! I will work with Phil
Webster and will use his Text Widget and EditorWindow classes. Hopefully this
will help us converge on a strong unit test for FormatParagraph.py. Thanks for
the reminder about
Changes by Todd Rovito :
--
nosy: +Todd.Rovito
___
Python tracker
<http://bugs.python.org/issue15661>
___
___
Python-bugs-list mailing list
Unsubscribe:
Todd Rovito added the comment:
Terry,
Bottom line I can't seem to get this patch to do anything for me. Before
the patch is applied IDLE seems to be handling warnings and exceptions just
fine in PyShell on the Mac. I get no crash and the output matches the normal
console. Here
Changes by Todd Rovito :
--
nosy: +Todd.Rovito
___
Python tracker
<http://bugs.python.org/issue18425>
___
___
Python-bugs-list mailing list
Unsubscribe:
New submission from Todd Rovito:
While working on a test case for Format Paragraph
(http://bugs.python.org/issue18226) I noted that format paragraph doesn't work
with comment blocks when a comment block is selected. The fix is very simple
by changing one line:
if first and last:
Changes by Todd Rovito :
--
keywords: +patch
nosy: +JayKrish, philwebster, roger.serwy, terry.reedy
Added file: http://bugs.python.org/file30891/18429FormatParagraphFor3.4.patch
___
Python tracker
<http://bugs.python.org/issue18
Todd Rovito added the comment:
Terry,
I was suffering from the classic chicken and egg problem so I was not sure
if the test case in http://bugs.python.org/issue18226 should include the small
code change. I will work with Phil Webster to get this small change added to
issue 18226 along
Todd Rovito added the comment:
As a suggestion I always use the command "make patchcheck" (before making the
patch) which catches the white space and tab problem plus it fixes other
things. Here is more information on patch check in the developer's guide.
http://docs.pyth
Todd Rovito added the comment:
This patch LGTM as well. I think it should be committed ASAP because the
button clearly doesn't work as it is programmed now.
--
___
Python tracker
<http://bugs.python.org/is
New submission from Todd Rovito:
covers point 1.1) "Pressing the Home key moves the cursor before the >>>
prompt, which then makes the keyboard unresponsive."
This issues was fixed on Windows XP and Linux here
http://bugs.python.org/issue3851
On Mac OS X the "h
Todd Rovito added the comment:
1.1) "Pressing the Home key moves the cursor before the >>> prompt, which then
makes the keyboard unresponsive."
This issue is still broken on Mac OS X.
http://bugs.python.org/issue18444
--
___
Py
Todd Rovito added the comment:
Ned,
Thanks for such a thorough comment this saved me lots of time now I don't
have to dig so deeply into the problem.
"After spending some time trying to understand how this all works or doesn't
across the various Tk's, I am coming to th
Changes by Todd Rovito :
--
nosy: +Todd.Rovito
___
Python tracker
<http://bugs.python.org/issue18441>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Todd Rovito :
--
nosy: +JayKrish
___
Python tracker
<http://bugs.python.org/issue18441>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Todd Rovito :
--
nosy: +philwebster
___
Python tracker
<http://bugs.python.org/issue18441>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Todd Rovito :
--
nosy: +Todd.Rovito
___
Python tracker
<http://bugs.python.org/issue18583>
___
___
Python-bugs-list mailing list
Unsubscribe:
Todd Rovito added the comment:
Ezio,
I think modern editors are expected to have this sort of functionality built
into them [1]. XCode is simply amazing where it will pop up errors and quote
the C99 standard [2]. We don't expect IDLE to have all that functionality but
it seemed
Todd Rovito added the comment:
Raymond,
Would you prefer PyFlakes instead? Try to consider IDLE being for beginners
so they need all the help they can get. Advanced users can always turn the
extension off. Thanks for your input.
--
___
Python
Changes by Todd Rovito :
--
nosy: +terry.reedy
___
Python tracker
<http://bugs.python.org/issue18704>
___
___
Python-bugs-list mailing list
Unsubscribe:
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
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
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.pa
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
Changes by Todd Rovito :
Removed file: http://bugs.python.org/file27589/DataModel__len__.patch
___
Python tracker
<http://bugs.python.org/issue1283110>
___
___
Python-bug
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
Changes by Todd Rovito :
--
nosy: +Todd.Rovito
___
Python tracker
<http://bugs.python.org/issue1207589>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Todd Rovito :
--
nosy: +Todd.Rovito
___
Python tracker
<http://bugs.python.org/issue10405>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Todd Rovito :
--
nosy: +Todd.Rovito
___
Python tracker
<http://bugs.python.org/issue13884>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Todd Rovito :
--
nosy: +Todd.Rovito
___
Python tracker
<http://bugs.python.org/issue13504>
___
___
Python-bugs-list mailing list
Unsubscribe:
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
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 taleina
Changes by Todd Rovito :
Removed file:
http://bugs.python.org/file27614/RightClickContextMenuUpdatedFor3point4.patch
___
Python tracker
<http://bugs.python.org/issue1207
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 patc
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 taleina
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
<http://bugs.python.org/issue1207
Changes by Todd Rovito :
Removed file: http://bugs.python.org/file27605/DataModel__len__.patch
___
Python tracker
<http://bugs.python.org/issue1283110>
___
___
Python-bug
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
<http://bugs.python.
Changes by Todd Rovito :
Removed file:
http://bugs.python.org/file27624/RightClickContextMenuUpdatedFor3point4.patch
___
Python tracker
<http://bugs.python.org/issue1283
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
<http://bugs.python.org/issue1283
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
<http://bugs.python.org/issue1283
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
Ad
Changes by Todd Rovito :
Removed file:
http://bugs.python.org/file27627/IDLEBreakPointDocumentation2point7.patch
___
Python tracker
<http://bugs.python.org/issue10
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
<h
Changes by Todd Rovito :
--
nosy: +Todd.Rovito
___
Python tracker
<http://bugs.python.org/issue16278>
___
___
Python-bugs-list mailing list
Unsubscribe:
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, OS
Changes by Todd Rovito :
Removed file:
http://bugs.python.org/file27615/RightClickContextMenuUpdatedFor3point4.patch
___
Python tracker
<http://bugs.python.org/issue1207
Changes by Todd Rovito :
Removed file:
http://bugs.python.org/file27616/RightClickContextMenuUpdatedFor2point7.patch
___
Python tracker
<http://bugs.python.org/issue1207
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
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
Changes by Todd Rovito :
--
nosy: +Todd.Rovito
___
Python tracker
<http://bugs.python.org/issue15869>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Todd Rovito :
--
nosy: +Todd.Rovito
___
Python tracker
<http://bugs.python.org/issue15392>
___
___
Python-bugs-list mailing list
Unsubscribe:
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
<h
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
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
Changes by Todd Rovito :
Removed file: http://bugs.python.org/file27804/OSRename_test_os.patch
___
Python tracker
<http://bugs.python.org/issue16278>
___
___
Python-bug
Todd Rovito added the comment:
False alarm my test case was buggy.
--
___
Python tracker
<http://bugs.python.org/issue16278>
___
___
Python-bugs-list mailin
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
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&quo
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
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
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
Changes by Todd Rovito :
Removed file: http://bugs.python.org/file27640/OSRenameTest3point4.patch
___
Python tracker
<http://bugs.python.org/issue16278>
___
___
Python-bug
Changes by Todd Rovito :
--
nosy: +Todd.Rovito
___
Python tracker
<http://bugs.python.org/issue5066>
___
___
Python-bugs-list mailing list
Unsubscribe:
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
<http://bugs.py
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
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
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
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
<http://bugs.python.
Todd Rovito added the comment:
Thanks much appreciated!
Sent from my iPhone
On Jan 4, 2013, at 1:07 PM, Zachary Ware wrote:
>
> Zachary Ware added the comment:
>
> Hi Todd, I can't commit, but I have a review in the works for you.
>
> --
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
Changes by Todd Rovito :
--
components: +Devguide -Documentation
nosy: +ezio.melotti
___
Python tracker
<http://bugs.python.org/issue16868>
___
___
Python-bug
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
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
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
Changes by Todd Rovito :
Removed file:
http://bugs.python.org/file28573/16868PythonDeveloperGuidePingIssueBeforeEmailingPython-dev.patch
___
Python tracker
<http://bugs.python.org/issue16
Changes by Todd Rovito :
Removed file:
http://bugs.python.org/file28603/16868PythonDeveloperGuidePingIssueBeforeEmailingPython-devV2.patch
___
Python tracker
<http://bugs.python.org/issue16
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 ta
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
1 - 100 of 190 matches
Mail list logo