[issue14996] IDLE 3.2.3 crashes saving a .py file to certain folders on Windows 7

2012-06-05 Thread Roger Serwy
Roger Serwy added the comment: Issue12988 only has this problem on 64-bit Win 7. The 32-bit version works correctly. Maureen tried both versions and had the same problem. -- ___ Python tracker <http://bugs.python.org/issue14

[issue12510] IDLE: calltips mishandle raw strings and other examples

2012-06-05 Thread Roger Serwy
Roger Serwy added the comment: Callable instances now return a call tip. Good! I agree with your analysis of the issue raised by Stephen. The get_argspec function will not fail unexpectedly. > but typing list.append( resulting in weird behavior: something flashed and > the typed text

[issue14997] IDLE tries to run shell window if line is completed with F5 rather than Enter

2012-06-05 Thread Roger Serwy
Roger Serwy added the comment: The ScriptBinding extension is enabled for the shell. If the shell is in a modified state, then pressing F5 will bring up the save dialog (or auto-save), and then perform a syntax check. This is what cuublu experienced. Attached is a patch against 3.3a4 to

[issue14996] IDLE 3.2.3 crashes saving a .py file to certain folders on Windows 7

2012-06-05 Thread Roger Serwy
Roger Serwy added the comment: Maureen, can you please start IDLE from a command prompt and report the error message? Launch a command prompt, enter in "cd c:\python32" and then "python -m idlelib.idle". IDLE should appear. Proceed to save something that causes the crash

[issue9247] imp.reload() doesn't take import lock

2012-06-06 Thread Roger Serwy
Roger Serwy added the comment: I just ran Antoine's test against the latest 3.3a4 build and received this: lock held = False lock held = False Is this issue still relevant given Brett's work on re-implementing import in pure Python? -- nosy: +serwy status: open

[issue14996] IDLE 3.2.3 crashes saving a .py file to certain folders on Windows 7

2012-06-06 Thread Roger Serwy
Roger Serwy added the comment: You are already in a Python shell. Type in "import idlelib.idle" to launch IDLE. -- ___ Python tracker <http://bugs.python.o

[issue14996] IDLE 3.2.3 crashes saving a .py file to certain folders on Windows 7

2012-06-06 Thread Roger Serwy
Roger Serwy added the comment: Did any messages appear in the Python shell? -- ___ Python tracker <http://bugs.python.org/issue14996> ___ ___ Python-bugs-list m

[issue14996] IDLE 3.2.3 crashes saving a .py file to certain folders on Windows 7

2012-06-06 Thread Roger Serwy
Roger Serwy added the comment: How are you using the open dialog to navigate to your usual directory? -- ___ Python tracker <http://bugs.python.org/issue14

[issue14996] IDLE 3.2.3 crashes saving a .py file to certain folders on Windows 7

2012-06-06 Thread Roger Serwy
Roger Serwy added the comment: Further discussion of this issue will be under Issue12988. We're working on finding a solution. -- resolution: duplicate -> status: closed -> open ___ Python tracker <http://bugs.python.

[issue14996] IDLE 3.2.3 crashes saving a .py file to certain folders on Windows 7

2012-06-06 Thread Roger Serwy
Roger Serwy added the comment: Sorry for the re-open. I submitted an old form. -- resolution: -> duplicate status: open -> closed ___ Python tracker <http://bugs.python.org/i

[issue12988] Tkinter File Dialog crashes on Win7 when saving to Documents Library

2012-06-06 Thread Roger Serwy
Roger Serwy added the comment: I installed 3.3.0a4 (64-bit) on Win 7 and the issue did not occur when using asksaveasfile. I repeated with 32-bit 3.3.0a4 without any problems. How can we confirm that 3.2 will receive the Tcl/Tk upgrade? (64-bit 2.7.3 does not have this bug

[issue12988] Tkinter File Dialog crashes on Win7 when saving to Documents Library

2012-06-06 Thread Roger Serwy
Roger Serwy added the comment: Re-opened. -- resolution: out of date -> status: closed -> open ___ Python tracker <http://bugs.python.org/issue12988> ___ __

[issue14996] IDLE 3.2.3 crashes saving a .py file to certain folders on Windows 7

2012-06-06 Thread Roger Serwy
Roger Serwy added the comment: Precise instructions can be found in msg144106 and msg161168 from Issue12988. -- ___ Python tracker <http://bugs.python.org/issue14

[issue13532] In IDLE, sys.stdout.write and sys.stderr can write any pickleable object

2012-06-11 Thread Roger Serwy
Roger Serwy added the comment: @Ramchandra: "__name__" does not exist for many objects. This issue with the sys.stdout.write encompasses a lot of other issues involving the shortcomings of the RPCProxy object. The following code prevents another prompt from appearing: &

[issue12510] IDLE: calltips mishandle raw strings and other examples

2012-06-12 Thread Roger Serwy
Roger Serwy added the comment: The _self_pat RE needs to be changed to just remove the first argument. Presently, another bug exists with the current implementation: >>> class A: def t(self, self1, self2): pass >>> a = A() >>>

[issue14937] IDLE's deficiency in the completion of file names (Python 32, Windows XP)

2012-06-12 Thread Roger Serwy
Roger Serwy added the comment: There's a small logic bug with Martin's patch. Opening up a new editor window and pressing Tab causes a traceback. Attached is a new patch to fix the problem. -- priority: normal -> high resolution: fixed -> stage: -> patch re

[issue15080] Cookie library doesn't parse date properly

2012-06-15 Thread Roger Serwy
Roger Serwy added the comment: 2.6.8 is the latest source-only release of the 2.6 series. Here's what I get: Python 2.6.8 (unknown, Jun 15 2012, 15:51:46) [GCC 4.5.2] on linux2 Type "help", "copyright", "credits" or "license"

[issue15141] IDLE horizontal scroll bar missing (Win-XPsp3)

2012-06-22 Thread Roger Serwy
Roger Serwy added the comment: Adding a horizontal scroll bar is relatively easy. This has already been done with the Horizontal.py extension as part of a separate project called IdleX. See http://idlex.sourceforge.net/extensions.html @Terry, perhaps this should be added as an enhancement to

[issue14667] No IDLE

2012-06-27 Thread Roger Serwy
Roger Serwy added the comment: James, do you have IDLE working? -- nosy: +serwy status: open -> pending ___ Python tracker <http://bugs.python.org/issu

[issue1207613] Bottom Scroll Bar

2012-06-30 Thread Roger Serwy
Roger Serwy added the comment: I wrote Horizontal.py as an extension in order to avoid forking IDLE. It should be simple to incorporate a toggling horizontal scroll bar within the EditorWindow class itself. > (Note: it would seem nice to be able to get a list of extensions available &g

[issue15262] Idle does not show traceback in other threads

2012-07-08 Thread Roger Serwy
Roger Serwy added the comment: Mark, I ran your example against 2.7.1 and did not receive a traceback. I then ran it against the latest 2.7.3+ and receive a traceback in IDLE. Here's the entire Shell contents: Python 2.7.3+ (2.7:97445ca895d5, Jul 8 2012, 19:58:43) [GCC 4.5.2] on l

[issue13532] In IDLE, sys.stdout and sys.stderr can write any pickleable object

2012-07-09 Thread Roger Serwy
Roger Serwy added the comment: I just pulled Martin's patches and they fix the issue. Indirection to the rescue! There is one very slight problem though with the error message raised on 2.7 since it is different than 3.3. Attached is a patch to fix it. -- Added file:

[issue15308] IDLE - add an "Interrupt Execution" to shell menu

2012-07-09 Thread Roger Serwy
New submission from Roger Serwy : Add an "Interrupt Execution" to the Shell menu, per issue13504, annoyance #3 - "PROBLEM: There’s no obvious way to stop a running program. (Don’t expect them to know Ctrl-C)" -- components: IDLE keywords: easy messages: 165122 nosy

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

2012-07-09 Thread Roger Serwy
Changes by Roger Serwy : -- dependencies: +IDLE - add an "Interrupt Execution" to shell menu ___ Python tracker <http://bugs.python.org/issue13504> ___ ___

[issue15308] IDLE - add an "Interrupt Execution" to shell menu

2012-07-09 Thread Roger Serwy
Changes by Roger Serwy : -- keywords: +patch Added file: http://bugs.python.org/file26335/issue15308.patch ___ Python tracker <http://bugs.python.org/issue15

[issue1757057] Unexpected "maximum recursion depth exceeded" in IDLE shell with objects that cannot be pickled

2012-07-09 Thread Roger Serwy
Roger Serwy added the comment: I think that issue13532 fixes this issue, as only strings are now pickled from the subprocess to the IDLE front-end for writing to stdout and stderr. This should address the pickling vulnerability. I downloaded BeautifulSoup 3.0.4 and did not see this problem

[issue4832] idle filename extension

2012-07-09 Thread Roger Serwy
Roger Serwy added the comment: issue4832_rev1.patch is a complete patch against 3.3. This is also part of issue13504, "7) ANNOYANCE: It’s too easy to forget the .py extension when saving a file." -- stage: -> patch review Added file: http://bugs.python.org/file26336/i

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

2012-07-09 Thread Roger Serwy
Changes by Roger Serwy : -- dependencies: +idle filename extension ___ Python tracker <http://bugs.python.org/issue13504> ___ ___ Python-bugs-list mailin

[issue15313] IDLE - remove all bare excepts

2012-07-09 Thread Roger Serwy
Changes by Roger Serwy : -- components: IDLE nosy: serwy, terry.reedy priority: normal severity: normal status: open title: IDLE - remove all bare excepts type: enhancement versions: Python 2.7, Python 3.3 ___ Python tracker <http://bugs.python.

[issue15313] IDLE - remove all bare excepts

2012-07-09 Thread Roger Serwy
New submission from Roger Serwy : There are a lot of bare exceptions in IDLE. Here's the output of "grep -n 'except:' *.py" AutoComplete.py:184:except: AutoComplete.py:209:except: Debugger.py:172:except: Debugger.

[issue4832] idle filename extension

2012-07-09 Thread Roger Serwy
Roger Serwy added the comment: Your description applied to the behavior on Ubuntu 11.04. -- ___ Python tracker <http://bugs.python.org/issue4832> ___ ___ Pytho

[issue15308] IDLE - add an "Interrupt Execution" to shell menu

2012-07-09 Thread Roger Serwy
Roger Serwy added the comment: I'm ok with broadening the scope of this issue to include other items. If we decide to deprecate running IDLE without a subprocess (http://mail.python.org/pipermail/idle-dev/2012-June/003124.html), then the history-next/prev would fit nicely under the

[issue15308] IDLE - add an "Interrupt Execution" to shell menu

2012-07-09 Thread Roger Serwy
Roger Serwy added the comment: The help.txt file needs to be modified as well. See interrupt_execution.patch. -- Added file: http://bugs.python.org/file26339/interrupt_execution.patch ___ Python tracker <http://bugs.python.org/issue15

[issue7883] CallTips.py _find_constructor does not work

2012-07-09 Thread Roger Serwy
Roger Serwy added the comment: Issue12510 fixes the issues listed here. I am leaving this issue open for discussing the test provided by Bernt. -- nosy: +terry.reedy resolution: -> fixed ___ Python tracker <http://bugs.python.org/iss

[issue15313] IDLE - remove all bare excepts

2012-07-09 Thread Roger Serwy
Roger Serwy added the comment: Line 1245 is part of this code (in time, these line numbers will change.) try: self.text.mark_gravity("iomark", "right") OutputWindow.write(self, s, tags, "iomark") self.tex

[issue15313] IDLE - remove all bare excepts

2012-07-09 Thread Roger Serwy
Roger Serwy added the comment: Also, issue13582 will become relevant on Windows since modifying the bare excepts may let uncaught exceptions be written to stderr, causing IDLE to crash. -- ___ Python tracker <http://bugs.python.org/issue15

[issue13657] IDLE doesn't support sys.ps1 and sys.ps2.

2012-07-09 Thread Roger Serwy
Roger Serwy added the comment: For reference, IDLE-DEV is discussing the prompt: http://mail.python.org/pipermail/idle-dev/2012-June/003129.html -- ___ Python tracker <http://bugs.python.org/issue13

[issue13532] In IDLE, sys.stdout and sys.stderr can write any pickleable object

2012-07-10 Thread Roger Serwy
Roger Serwy added the comment: sys.stdin has a write method, but it should raise "io.UnsupportedOperation: not writable" when passed a string. It looks like IDLE has allowed writes to stdin even before Martin's patch. I'll open a separate

[issue15318] IDLE - sys.stdin is writeable

2012-07-10 Thread Roger Serwy
New submission from Roger Serwy : This is a follow-up to issue13532 which fixed problems with IDLE's sys.stdout and sys.stderr implementation. Presently, sys.stdin has a write method, but does not raise "io.UnsupportedOperation: not writable" when passed a string. Instead, it

[issue13532] In IDLE, sys.stdout and sys.stderr can write any pickleable object

2012-07-10 Thread Roger Serwy
Roger Serwy added the comment: Running "input" from IDLE now raises an error. Attached is a fix to _RPCFile to allow readline (and isatty) to function properly. -- priority: normal -> high resolution: fixed -> status: closed -> open Added file: http://bugs.p

[issue12967] IDLE RPC Proxy for standard IO streams lacks 'errors' attribute

2012-07-10 Thread Roger Serwy
Roger Serwy added the comment: Issue13532 has an applied patch (422242dbce30) for the subprocess that makes the stdout, stderr, and stdin inherit from io.TextIOBase. This includes the "errors" attribute, albeit set to ''. The fix does not apply when running IDLE without

[issue15319] IDLE - input() is broken.

2012-07-10 Thread Roger Serwy
New submission from Roger Serwy : Per Martin's request in msg165197, this issue has been separated from Issue13532. The newly introduced _RPCFile object in run.py (422242dbce30) inherits from io.TextIOBase which has "readline" as one of its methods. As a result, IDLE's in

[issue4832] idle filename extension

2012-07-10 Thread Roger Serwy
Roger Serwy added the comment: I tried issue4832_rev2.patch on Ubuntu 11.04 with Tk 8.5 and it still behaves as Terry described. -- ___ Python tracker <http://bugs.python.org/issue4

[issue15319] IDLE - input() is broken.

2012-07-10 Thread Roger Serwy
Roger Serwy added the comment: I like Serhiy's patch. It works for me. -- ___ Python tracker <http://bugs.python.org/issue15319> ___ ___ Python-bugs-list m

[issue15318] IDLE - sys.stdin is writeable

2012-07-10 Thread Roger Serwy
Roger Serwy added the comment: I agree. I'll close it. -- resolution: -> duplicate status: open -> closed ___ Python tracker <http://bugs.python.

[issue15318] IDLE - sys.stdin is writeable

2012-07-10 Thread Roger Serwy
Changes by Roger Serwy : -- superseder: -> IDLE - input() is broken. ___ Python tracker <http://bugs.python.org/issue15318> ___ ___ Python-bugs-list mai

[issue15319] IDLE - input() is broken.

2012-07-10 Thread Roger Serwy
Roger Serwy added the comment: Including issue15318 where stdin is writable. The proper solution to that issue and this one are likely the same. -- ___ Python tracker <http://bugs.python.org/issue15

[issue15319] IDLE - input() is broken.

2012-07-10 Thread Roger Serwy
Roger Serwy added the comment: > Same difference for readlines and writelines. I wonder how input works if it > does not call sys.stdin.read() > Eventually IDLE makes a call to PyShell's readline. -- ___ Python tracker <http:

[issue15319] IDLE - sys.stdin is broken.

2012-07-10 Thread Roger Serwy
Roger Serwy added the comment: PyShell.py's PyShell object has the readline method, at line 1080 in the most recent code. It's meant for use with and without a subprocess. (See also Issue14254) The IDLEfork project long ago created the subprocess and the RPC plumbing for the

[issue15318] IDLE - sys.stdin is writeable

2012-07-11 Thread Roger Serwy
Roger Serwy added the comment: I tested blockfile-3.diff against the latest code in the repository. sys.stdin.write returns the wrong error message when passed a non-string. Presently it returns io.UnsupportedOperation instead of TypeError: must be str, not ... The attached blockfile-4.diff

[issue15318] IDLE - sys.stdin is writeable

2012-07-12 Thread Roger Serwy
Roger Serwy added the comment: On 07/12/2012 04:13 AM, Serhiy Storchaka wrote: > Serhiy Storchaka added the comment: > >> sys.stdin.write returns the wrong error message when passed a non-string. >> Presently it returns io.UnsupportedOperation instead of TypeError: mu

[issue15318] IDLE - sys.stdin is writeable

2012-07-12 Thread Roger Serwy
Roger Serwy added the comment: >>>> sys.stdin.write('qwe') > Traceback (most recent call last): >File "", line 1, in > io.UnsupportedOperation: not writable > > -- I'm passing a number, *not* a string. -- _

[issue15335] IDLE - debugger steps through run.py internals

2012-07-12 Thread Roger Serwy
New submission from Roger Serwy : The IDLE debugger steps through the internals of _RPCFile. To reproduce this bug, create a new .py file with a few print statements, enable the debugger, and then run the file. Stepping through the print statement enters into _RPCFile. -- components

[issue15335] IDLE - debugger steps through run.py internals

2012-07-12 Thread Roger Serwy
Roger Serwy added the comment: Debugger.py has a method "in_rpc_code" which ultimately prevents stepping though code from rpc.py. (Presently an external file named "rpc.py" can not be debugged using IDLE.) Adding "run.py" to the check would prevent run.py from

[issue6858] This is a python file, apply syntax highlighting

2012-07-12 Thread Roger Serwy
Roger Serwy added the comment: Attached is a patch to allow toggling of the ColorDelegator. It can be toggled using the existing, but undocumented, Control-/ binding. The patch modifies the "toggle_colorize_event" to fully remove coloring or fully recolorize the text rathe

[issue15335] IDLE - debugger steps through run.py internals

2012-07-13 Thread Roger Serwy
Roger Serwy added the comment: > I suggest to add a decorator @Debugger.internal for all methods that the > debugger should not step into. It should set a function attribute that the > debugger then checks for. The decorator idea may work. I'll need to see how to make it

[issue15347] IDLE - does not close if the debugger was active

2012-07-13 Thread Roger Serwy
New submission from Roger Serwy : IDLE fails to close if the debugger was active. Steps to reproduce: 1) Start IDLE with only a shell. 2) Enable debugger. 3) Press enter in the shell. (Causes debugger to activate) 4) Close the shell window. (File->Exit or click X) 5) Click "OK"

[issue15348] IDLE - shell becomes unresponsive if debugger windows is closed while active.

2012-07-13 Thread Roger Serwy
New submission from Roger Serwy : The IDLE shell does not respond to commands if the debugger window is closed by clicking "X". This is due to PyShell's "executing" flag not being reset. Steps to reproduce: 1) Start IDLE with a shell. 2) Enable debugger. 3)

[issue15348] IDLE - shell becomes unresponsive if debugger windows is closed while active.

2012-07-13 Thread Roger Serwy
Changes by Roger Serwy : -- type: -> behavior ___ Python tracker <http://bugs.python.org/issue15348> ___ ___ Python-bugs-list mailing list Unsubscri

[issue15337] The cmd module incorrectly lists "help" as an undocumented command

2012-07-14 Thread Roger Serwy
Roger Serwy added the comment: On 3.3.0b1 and 3.2 I get: (Cmd) help Documented commands (type help ): help I only see help under "Undocumented" with 2.7. It looks like this changeset f8c896ad787f never got backported to 2.7. This invol

[issue15349] SyntaxError b0rked grammar

2012-07-15 Thread Roger Serwy
Roger Serwy added the comment: Thank you for the bug report, Ztatik. Since 2.6 is now in security-fix-only mode, this issue will not be fixed. See http://www.python.org/getit/releases/2.6.8/ This grammar issue was fixed in 2.7 with revision 386922b629c3, but was not applied to the 2.6

[issue8229] Interpreter crash on application shutdown

2012-07-15 Thread Roger Serwy
Roger Serwy added the comment: tb220, is this still a bug? Python 2.6 is now in security-fix-only mode. -- nosy: +serwy status: open -> pending ___ Python tracker <http://bugs.python.org/iss

[issue15363] Idle/tkinter ~x.py 'save as' fails. closes idle

2012-07-15 Thread Roger Serwy
Roger Serwy added the comment: IDLE silently closing is due to issue13582. On Linux (Ubuntu 11.04, Tk8.5) I can not specify "~template.py" for a filename for opening or saving a file. Clicking on either open or save produces no action. However, I can specify "~/template.py&q

[issue7957] Tutorial issue regarding the sys module

2012-07-15 Thread Roger Serwy
Roger Serwy added the comment: IDLE supporting sys.ps1 and sys.ps2 is discussed in issue13657. I am closing this issue in favor of that one. -- nosy: +serwy resolution: -> duplicate status: open -> closed superseder: -> IDLE doesn't support sys.p

[issue6171] IDLE - Class Browser selection in Ubuntu

2012-07-15 Thread Roger Serwy
Changes by Roger Serwy : -- nosy: +serwy title: Class Browser selection in Ubuntu -> IDLE - Class Browser selection in Ubuntu ___ Python tracker <http://bugs.python.org/iss

[issue6804] IDLE: Detect Python files even if name doesn't end in .py

2012-07-15 Thread Roger Serwy
Roger Serwy added the comment: This is related to issue6858. I assume that the point of this issue is to enable syntax highlighting by relying on the Windows registry? -- nosy: +serwy ___ Python tracker <http://bugs.python.org/issue6

[issue6804] IDLE: Detect Python files even if name doesn't end in .py

2012-07-16 Thread Roger Serwy
Roger Serwy added the comment: Is the error message a traceback? If so, could you open a separate issue for it? -- ___ Python tracker <http://bugs.python.org/issue6

[issue15382] os.utime() mishandles some arguments

2012-07-17 Thread Roger Serwy
Roger Serwy added the comment: Attached is a preliminary patch to check ns != Py_None. -- components: +Library (Lib) keywords: +patch nosy: +serwy type: -> behavior Added file: http://bugs.python.org/file26421/issue15382.patch ___ Python trac

[issue15382] os.utime() mishandles some arguments

2012-07-17 Thread Roger Serwy
Roger Serwy added the comment: _rev1 has a basic test. Is it sufficient? -- Added file: http://bugs.python.org/file26423/issue15382_rev1.patch ___ Python tracker <http://bugs.python.org/issue15

[issue14513] IDLE icon switched and switches on Windows taskbar

2012-07-17 Thread Roger Serwy
Changes by Roger Serwy : -- components: +IDLE -Installation, Windows ___ Python tracker <http://bugs.python.org/issue14513> ___ ___ Python-bugs-list mailin

[issue14513] IDLE icon switched and switches on Windows taskbar

2012-07-17 Thread Roger Serwy
Changes by Roger Serwy : -- components: +Windows ___ Python tracker <http://bugs.python.org/issue14513> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue14513] IDLE icon switched and switches on Windows taskbar

2012-07-17 Thread Roger Serwy
Roger Serwy added the comment: With 3.3.0b1 amd64, I can pin IDLE to the taskbar with the appropriate icon (white page with Python logo). When I unpin IDLE with an editor window focused, the icon becomes the Tk logo. However, re-pinning the app brings back the other icon. Terry, can you

[issue12510] IDLE: calltips mishandle raw strings and other examples

2012-07-18 Thread Roger Serwy
Roger Serwy added the comment: Are there any other aspects of the calltip handler that requires fixing? If not, then I can start back-porting the patches. -- ___ Python tracker <http://bugs.python.org/issue12

[issue9890] Visual C++ Runtime Library Error is there a fix?

2012-07-18 Thread Roger Serwy
Roger Serwy added the comment: Is this still a problem? My guess is that this issue is out of date. -- nosy: +serwy status: open -> pending ___ Python tracker <http://bugs.python.org/iss

[issue6257] Idle terminates on source save while debugging

2012-07-18 Thread Roger Serwy
Roger Serwy added the comment: The only was I get IDLE to crash is if the file has breakpoints enabled. Is this how IDLE is crashing? -- nosy: +serwy ___ Python tracker <http://bugs.python.org/issue6

[issue9803] IDLE closes with save while breakpoint open

2012-07-18 Thread Roger Serwy
Roger Serwy added the comment: Reopening. I mistakenly closed this issue as a duplicate, but this issue involves breakpoints, unlike 6257. -- resolution: duplicate -> status: closed -> open superseder: Idle terminates on source save while deb

[issue9803] IDLE closes with save while breakpoint open

2012-07-18 Thread Roger Serwy
Roger Serwy added the comment: Attached is a patch to fix the issue. The ranges_to_linenumbers function relies on the results of text.tag_ranges. The returned tuple contains Tk textindex objects. While these objects contain a string, they are not string objects. Its .string value must be

[issue14105] Breakpoints in debug lost if line is inserted; IDLE

2012-07-18 Thread Roger Serwy
Roger Serwy added the comment: The ColorDelegator is responsible for providing the coloring for the BREAK tag which is used to mark breakpoints. When recoloring, the BREAK tag may be removed (find self.tag_remove in recolorize_main). This is precisely why the breakpoints disappear. On 2.7

[issue6257] Idle terminates on source save while debugging

2012-07-18 Thread Roger Serwy
Roger Serwy added the comment: Thanks Andy for your prompt response. This issue is a duplicate with issue9803 which has a patch. I will close this issue in favor of that one. Feel free to add yourself to the nosy list if you wish. -- resolution: -> duplicate status: open ->

[issue13553] Tkinter doesn't set proper application name in Gnome Shell

2012-07-30 Thread Roger Serwy
Roger Serwy added the comment: It looks like this code will set the title properly in the latest GNOME shell (3.4): from Tkinter import * app = Tk(className='App Name') app.title('App Title') app.mainloop() The documentation should be updated to explain

[issue9890] Visual C++ Runtime Library Error is there a fix?

2012-08-06 Thread Roger Serwy
Roger Serwy added the comment: What are the precise steps you are taking to cause this error? What version of Windows are you using? Is it 32-bit? -- ___ Python tracker <http://bugs.python.org/issue9

[issue9890] Visual C++ Runtime Library Error is there a fix?

2012-08-06 Thread Roger Serwy
Roger Serwy added the comment: Karen, thank you for your reply and your cooperation. This issue may take some time to resolve. It looks like the error you are receiving has been addressed in issue11288. Can you check it out? -- ___ Python tracker

[issue15574] IDLE crash in OS X even with 2.7.3 and ActiveTcl 8.5.12

2012-08-07 Thread Roger Serwy
Changes by Roger Serwy : -- nosy: +ned.deily ___ Python tracker <http://bugs.python.org/issue15574> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue1574] Touchpad 2 Finger scroll does not work in IDLE on Mac (But scroll wheel of external mouse does)

2012-08-18 Thread Roger Serwy
Roger Serwy added the comment: Tk support on Mac has improved greatly since 2008. Is this still a valid issue? -- nosy: +serwy ___ Python tracker <http://bugs.python.org/issue1

[issue15780] IDLE (windows) with PYTHONPATH and multiple python versions

2012-08-26 Thread Roger Serwy
Roger Serwy added the comment: Look in the registry at "Computer\HKEY_CLASSES_ROOT\Python.File\shell\" and then inspect the launch commands under "open\command" and "Edit with IDLE\command". -- nosy: +serwy ___

[issue15862] IDLE not working when due to wrong Hard Drive point of os.path.expanduser

2012-09-04 Thread Roger Serwy
Roger Serwy added the comment: IDLE not responding is likely due to Issue13582, since the warning message would cause IDLE to terminate abruptly when launched with pythonw.exe. What does os.path.expanduser("~") evaluate to when executed from the IDLE shell? -- no

[issue15998] Python GUI idle not working

2012-09-21 Thread Roger Serwy
Roger Serwy added the comment: Hi Sreeni, Can you launch a Python interpreter from C:\python32\python.exe and report the output to "import tkinter" ? -- status: open -> pending type: crash -> behavior ___ Python tracker <htt

[issue15998] Python GUI idle not working

2012-09-24 Thread Roger Serwy
Roger Serwy added the comment: A re-install fixed the issue for OP caused by what appeared to be a corrupt /Lib directory. I'm closing this issue. -- resolution: -> works for me status: open -> closed ___ Python tracker <http://b

[issue16033] IDLE crashes when debugging and saving

2012-09-24 Thread Roger Serwy
Roger Serwy added the comment: This was fixed in issue9803, but after the 3.2.3 release. I'm closing this issue as a duplicate. -- resolution: -> duplicate status: open -> closed superseder: -> IDLE closes with save while b

[issue11103] Python 3.2 installer doesn't register file extensions on Windows 7

2012-09-24 Thread Roger Serwy
Roger Serwy added the comment: The latest 3.2.3 release for Win7-64 registers the .py extensions properly, with "Open" and "Edit with IDLE". I'm closing this issue as out of date. -- nosy: +serwy resolution: -> out of

[issue15869] IDLE: Include .desktop file and icon

2012-09-24 Thread Roger Serwy
Roger Serwy added the comment: I tried the provided .desktop files and they work with Gnome 3.4. -- keywords: +easy nosy: +serwy title: Include .desktop file and icon -> IDLE: Include .desktop file and icon ___ Python tracker <http://bugs.pyth

[issue16035] Segmentation fault in test suite of apsw

2012-09-26 Thread Roger Binns
Roger Binns added the comment: Thanks for finding this problem. I can repeat it with the patch and am in the process of fixing it. -- ___ Python tracker <http://bugs.python.org/issue16

[issue15862] IDLE not working when due to wrong Hard Drive point of os.path.expanduser

2012-09-28 Thread Roger Serwy
Roger Serwy added the comment: With Python 2.7.3 on Win7, I tried the following: C:\Python27>set HOME=H:\ C:\Python27>python -m idlelib.idle I do receive the same warning messages described by Cemal, since I don't have a valid H:\ drive. However, IDLE is responsive. Running IDLE

[issue15862] IDLE not working when due to wrong Hard Drive point of os.path.expanduser

2012-09-30 Thread Roger Serwy
Roger Serwy added the comment: In your original message, did IDLE eventually start when you ran: C:\Python27>python.exe Lib\idlelib\idle.py ? If yes, then the bug is likely due to issue13582. If I understand correctly, when you reboot your computer, IDLE won't launch from the sho

[issue12930] reindent.py inserts spaces in multiline literals

2012-09-30 Thread Roger Serwy
Roger Serwy added the comment: This issue also affects reindent.py in Python 3.x. The attached patch adds a "-s" switch to reindent.py to disallow changes to the contents of strings. The rstrip_and_expand_tabs function tokenizes the input to identify all strings and then expands a

[issue12930] reindent.py inserts spaces in multiline literals

2012-09-30 Thread Roger Serwy
Roger Serwy added the comment: Attached is a simple test of the "-s" functionality for reindent.py. It works on Linux but I'm not sure about Windows. -- Added file: http://bugs.python.org/file27367/test_reindent.py ___ Python

[issue12930] reindent.py inserts spaces in multiline literals

2012-09-30 Thread Roger Serwy
Roger Serwy added the comment: > > Definitely a bugfix should not add any new switches. Patch would simply lead > to preserving of all string literals and nothing more. I added the switch so that the existing behavior of reindent would stay the same in case some other scripts rel

[issue10834] Python 2.7 x86 IDLE fails to run in Windows 7

2012-09-30 Thread Roger Serwy
Roger Serwy added the comment: Peter, is this still an issue with 2.7.3? -- nosy: +serwy ___ Python tracker <http://bugs.python.org/issue10834> ___ ___ Python-bug

[issue14997] IDLE tries to run shell window if line is completed with F5 rather than Enter

2012-09-30 Thread Roger Serwy
Changes by Roger Serwy : -- stage: needs patch -> patch review ___ Python tracker <http://bugs.python.org/issue14997> ___ ___ Python-bugs-list mailing list Un

[issue16103] Help() fails at raw_input readline (IDLE 2.7.3, Win7, pythonw)

2012-10-01 Thread Roger Serwy
Roger Serwy added the comment: Terry, I am unable to reproduce this error under Win7 Ultimate (no SP1) with either the 32-bit or 64-bit install of 2.7.3. Calling help() produces an interactive prompt in all my test cases. I launched IDLE from the start menu shortcut, with "python.e

<    1   2   3   4   5   6   7   >