[issue802310] tkFont may reuse font names

2012-03-21 Thread Andrew Svetlov
Changes by Andrew Svetlov : -- nosy: +asvetlov versions: +Python 3.3 -Python 3.1 ___ Python tracker <http://bugs.python.org/issue802310> ___ ___ Python-bugs-list m

[issue7738] IDLE hang when tooltip comes up in Linux

2012-03-21 Thread Andrew Svetlov
Andrew Svetlov added the comment: +1 -- ___ Python tracker <http://bugs.python.org/issue7738> ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyth

[issue4652] IDLE does not work with Unicode

2012-03-21 Thread Andrew Svetlov
Changes by Andrew Svetlov : -- nosy: +asvetlov ___ Python tracker <http://bugs.python.org/issue4652> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue10118] Tkinter does not find font

2012-03-21 Thread Andrew Svetlov
Changes by Andrew Svetlov : -- nosy: +asvetlov ___ Python tracker <http://bugs.python.org/issue10118> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue1500773] wm_attributes doesn't take keyword arguments

2012-03-21 Thread Andrew Svetlov
Changes by Andrew Svetlov : -- nosy: +asvetlov ___ Python tracker <http://bugs.python.org/issue1500773> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue4652] IDLE does not work with Unicode

2012-03-21 Thread Andrew Svetlov
Andrew Svetlov added the comment: For now unicode BMP has full support in TK while non-BMP characters doesn't works. 'こ' character is BMP symbol: >>> hex(ord('こ')) '0x3053' which is lesser than non-BMP space (starting from 0x1). I have no idea

[issue4652] IDLE does not work with Unicode

2012-03-21 Thread Andrew Svetlov
Andrew Svetlov added the comment: I close this issue because: - current 3.2 and upcoming 3.3 support Japanese characters very well. - there are problems with non-BMP characters not supported currently but it's another issue. See progress of #14200 and others for non-BMP. -- ass

[issue4333] Reworked Dialog.py

2012-03-21 Thread Andrew Svetlov
Changes by Andrew Svetlov : -- nosy: +asvetlov ___ Python tracker <http://bugs.python.org/issue4333> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue4652] IDLE does not work with Unicode

2012-03-21 Thread Andrew Svetlov
Andrew Svetlov added the comment: Daniel Swanson, maybe my msg156512 was not obvious. You can use 'ç' without any problem in IDLE — it is BMP character. See http://en.wikipedia.org/wiki/Mapping_of_Unicode_characters for details. tkinter has full support for 'Basic Multilingu

[issue3035] Removing apparently unwanted functions from Tkinter

2012-03-21 Thread Andrew Svetlov
Andrew Svetlov added the comment: Pushed as PendingDepricationWarnings for upcoming 3.3 -- assignee: -> asvetlov resolution: -> remind stage: patch review -> versions: +Python 3.3, Python 3.4 -Python 3.2 ___ Python track

[issue1676] Fork/exec issues with Tk 8.5/Python 2.5.1 on OS X

2012-03-22 Thread Andrew Svetlov
Andrew Svetlov added the comment: Let's close this issue as very old and obsolete. -- nosy: +asvetlov ___ Python tracker <http://bugs.python.org/i

[issue1222721] tk + setlocale problems...

2012-03-22 Thread Andrew Svetlov
Andrew Svetlov added the comment: I have no problems with executing demo. I used Russian locale with LC_NUMERIC, utf-8 and cp1251 (Russian Windows encoding). Looks like the problem cannot be reproduced. -- nosy: +asvetlov ___ Python tracker <h

[issue3035] Removing apparently unwanted functions from Tkinter

2012-03-22 Thread Andrew Svetlov
Andrew Svetlov added the comment: David Murray, I used to think what deprecation process in Python have to go trough PendingDeprectaionWarning to DeprecationWarning and removing in next next release at end. Is it right? Also I thought what that trivial patch does not need to be published in

[issue11077] Tkinter is not thread safe

2012-03-22 Thread Andrew Svetlov
Changes by Andrew Svetlov : -- nosy: +asvetlov ___ Python tracker <http://bugs.python.org/issue11077> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue5527] multiprocessing won't work with Tkinter (under Linux)

2012-03-22 Thread Andrew Svetlov
Changes by Andrew Svetlov : -- nosy: +asvetlov ___ Python tracker <http://bugs.python.org/issue5527> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue1447222] tkinter Dialog fails when more than four buttons are used

2012-03-22 Thread Andrew Svetlov
Changes by Andrew Svetlov : -- nosy: +asvetlov ___ Python tracker <http://bugs.python.org/issue1447222> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue1252236] Simplying Tkinter's event loop

2012-03-22 Thread Andrew Svetlov
Changes by Andrew Svetlov : -- nosy: +asvetlov ___ Python tracker <http://bugs.python.org/issue1252236> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue6270] Menu deletecommand fails if command is already deleted

2012-03-22 Thread Andrew Svetlov
Changes by Andrew Svetlov : -- nosy: +asvetlov ___ Python tracker <http://bugs.python.org/issue6270> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue3015] tkinter with wantobjects=False has been broken for some time

2012-03-22 Thread Andrew Svetlov
Changes by Andrew Svetlov : -- nosy: +asvetlov ___ Python tracker <http://bugs.python.org/issue3015> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue1524639] Fix Tkinter Tcl-commands memory-leaks

2012-03-22 Thread Andrew Svetlov
Changes by Andrew Svetlov : -- assignee: -> asvetlov nosy: +asvetlov ___ Python tracker <http://bugs.python.org/issue1524639> ___ ___ Python-bugs-list mai

[issue1752252] tkFileDialog closes Python when used

2012-03-22 Thread Andrew Svetlov
Andrew Svetlov added the comment: Ping. Is there can be reproduced? I like to see the issue as out of date. -- nosy: +asvetlov, georg.brandl, loewis, terry.reedy versions: +Python 3.3 -Python 2.6, Python 3.0 ___ Python tracker <h

[issue14200] Idle shell crash on printing non-BMP unicode character

2012-03-25 Thread Andrew Svetlov
Andrew Svetlov added the comment: After experiments with non-BMP characters I figured out: — non-bmp symbols processed by Tk text widgets (Entry, Text etc.) differently. For example Entry can display non-bmp with spaces after glyph, Text reduces symbol to BMP. Editing is also weird. — looks

[issue14390] Tkinter single-threaded deadlock

2012-03-25 Thread Andrew Svetlov
Andrew Svetlov added the comment: Can you make a test code to introduce you issue? I understand — it's not easy to extract failing code from your big project but please make simple example with python code and trivial C Extension for presentation of your problem. Let's start f

[issue6124] Tkinter should support the OS X zoom button

2012-03-25 Thread Andrew Svetlov
Andrew Svetlov added the comment: If Marc Culler as well as anybody has no interest/progress on that I will close the issue next week. -- nosy: +asvetlov ___ Python tracker <http://bugs.python.org/issue6

[issue6124] Tkinter should support the OS X zoom button

2012-03-25 Thread Andrew Svetlov
Changes by Andrew Svetlov : -- assignee: gpolo -> asvetlov ___ Python tracker <http://bugs.python.org/issue6124> ___ ___ Python-bugs-list mailing list Unsubscri

[issue6639] turtle: _tkinter.TclError: invalid command name ".10170160"

2012-03-25 Thread Andrew Svetlov
Changes by Andrew Svetlov : -- nosy: +asvetlov ___ Python tracker <http://bugs.python.org/issue6639> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue9016] IDLE won't launch (Win XP)

2012-03-25 Thread Andrew Svetlov
Andrew Svetlov added the comment: Ping. I like to close the issue next week if no response. -- nosy: +asvetlov ___ Python tracker <http://bugs.python.org/issue9

[issue8231] Unable to run IDLE without write-access to config directory

2012-03-25 Thread Andrew Svetlov
Andrew Svetlov added the comment: Let's close the issue next week as report doesn't make sense if issuer has no write access to own home dir. -- nosy: +asvetlov ___ Python tracker <http://bugs.python.

[issue5707] IDLE will not load

2012-03-25 Thread Andrew Svetlov
Andrew Svetlov added the comment: Closing the issue. If somebody has a problem related to this — please make a new report. -- nosy: +asvetlov resolution: accepted -> fixed stage: commit review -> committed/rejected status: open -> closed _

[issue13052] IDLE: replace ending with '\' causes crash

2012-03-25 Thread Andrew Svetlov
Changes by Andrew Svetlov : -- assignee: -> asvetlov nosy: +asvetlov priority: normal -> high ___ Python tracker <http://bugs.python.org/issue13052> ___ ___

[issue8231] Unable to run IDLE without write-access to config directory

2012-03-25 Thread Andrew Svetlov
Andrew Svetlov added the comment: Good point. Thank you. -- ___ Python tracker <http://bugs.python.org/issue8231> ___ ___ Python-bugs-list mailing list Unsub

[issue5150] IDLE to support reindent.py

2012-03-25 Thread Andrew Svetlov
Changes by Andrew Svetlov : -- nosy: +asvetlov ___ Python tracker <http://bugs.python.org/issue5150> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue786827] IDLE starts with no menus (Cygwin)

2012-03-25 Thread Andrew Svetlov
Andrew Svetlov added the comment: ping -- nosy: +asvetlov ___ Python tracker <http://bugs.python.org/issue786827> ___ ___ Python-bugs-list mailing list Unsub

[issue9609] make cProfile multi-stack aware

2012-03-25 Thread Andrew Svetlov
Andrew Svetlov added the comment: Is there progress on it? -- ___ Python tracker <http://bugs.python.org/issue9609> ___ ___ Python-bugs-list mailing list Unsub

[issue1253] IDLE - Percolator overhaul

2012-03-25 Thread Andrew Svetlov
Changes by Andrew Svetlov : -- nosy: +asvetlov ___ Python tracker <http://bugs.python.org/issue1253> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue1053687] PyOS_InputHook not called in IDLE subprocess

2012-03-25 Thread Andrew Svetlov
Andrew Svetlov added the comment: Let's look on IDLE only. The problem has been fixed by #989712 I will close the issue next week if no objections. -- ___ Python tracker <http://bugs.python.org/issu

[issue1053687] PyOS_InputHook not called in IDLE subprocess

2012-03-26 Thread Andrew Svetlov
Changes by Andrew Svetlov : -- versions: +Python 3.3 -Python 2.7, Python 3.1, Python 3.2 ___ Python tracker <http://bugs.python.org/issue1053687> ___ ___ Pytho

[issue786827] IDLE starts with no menus (Cygwin)

2012-03-26 Thread Andrew Svetlov
Andrew Svetlov added the comment: I like to close the issue if problem has been solved by cygwin itself. -- ___ Python tracker <http://bugs.python.org/issue786

[issue786827] IDLE starts with no menus (Cygwin)

2012-03-26 Thread Andrew Svetlov
Andrew Svetlov added the comment: Closing as the latest cygwin build works fine. -- resolution: -> out of date stage: needs patch -> committed/rejected status: open -> closed ___ Python tracker <http://bugs.python.org

[issue989712] Support using Tk without a mainloop

2012-03-26 Thread Andrew Svetlov
Andrew Svetlov added the comment: Roger, your patch is pushed. Please next time when you reopen closed bug set 'Resolution' field to 'remind'. Thank you. -- ___ Python tracker <http://bugs

[issue989712] Support using Tk without a mainloop

2012-03-26 Thread Andrew Svetlov
Changes by Andrew Svetlov : -- status: open -> closed ___ Python tracker <http://bugs.python.org/issue989712> ___ ___ Python-bugs-list mailing list Unsubscri

[issue989712] Support using Tk without a mainloop

2012-03-26 Thread Andrew Svetlov
Changes by Andrew Svetlov : -- assignee: kbk -> asvetlov ___ Python tracker <http://bugs.python.org/issue989712> ___ ___ Python-bugs-list mailing list Unsubscri

[issue539907] Tkinter lock conflicts extension widgets

2012-03-26 Thread Andrew Svetlov
Changes by Andrew Svetlov : -- nosy: +asvetlov ___ Python tracker <http://bugs.python.org/issue539907> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue539907] Tkinter lock conflicts extension widgets

2012-03-26 Thread Andrew Svetlov
Changes by Andrew Svetlov : -- versions: +Python 3.3 -Python 2.7 ___ Python tracker <http://bugs.python.org/issue539907> ___ ___ Python-bugs-list mailin

[issue5680] Command-line arguments when running in IDLE

2012-03-26 Thread Andrew Svetlov
Changes by Andrew Svetlov : -- nosy: +asvetlov ___ Python tracker <http://bugs.python.org/issue5680> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue5233] Enhance 2.7 IDLE to exec IDLESTARTUP/PYTHONSTARTUP on restart

2012-03-26 Thread Andrew Svetlov
Changes by Andrew Svetlov : -- nosy: +asvetlov ___ Python tracker <http://bugs.python.org/issue5233> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue5594] IDLE startup configuration

2012-03-26 Thread Andrew Svetlov
Changes by Andrew Svetlov : -- nosy: +asvetlov ___ Python tracker <http://bugs.python.org/issue5594> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue8378] PYTHONSTARTUP is not run by default when Idle is started

2012-03-26 Thread Andrew Svetlov
Changes by Andrew Svetlov : -- nosy: +asvetlov ___ Python tracker <http://bugs.python.org/issue8378> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue8427] toplevel jumps to another location on the screen

2012-03-26 Thread Andrew Svetlov
Andrew Svetlov added the comment: Ping -- nosy: +asvetlov ___ Python tracker <http://bugs.python.org/issue8427> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue6717] Some problem with recursion handling

2012-03-26 Thread Andrew Svetlov
Changes by Andrew Svetlov : -- nosy: +asvetlov ___ Python tracker <http://bugs.python.org/issue6717> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue10079] idlelib for Python 3 with Guilherme Polo GSoC enhancements

2012-03-27 Thread Andrew Svetlov
Changes by Andrew Svetlov : -- nosy: +asvetlov ___ Python tracker <http://bugs.python.org/issue10079> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue14432] Bug in generator if the generator in created in a C thread

2012-03-28 Thread Andrew Svetlov
Changes by Andrew Svetlov : -- nosy: +asvetlov ___ Python tracker <http://bugs.python.org/issue14432> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue14409] IDLE: not executing commands from shell, error with default keybinding for Return

2012-03-29 Thread Andrew Svetlov
Andrew Svetlov added the comment: I agree with Roger's patch. But I'm pretty sure Ankit had another problem just because IDLE shell works for everyone without that patch. -- ___ Python tracker <http://bugs.python.o

[issue14440] Close background process if IDLE closes abnormally.

2012-03-29 Thread Andrew Svetlov
New submission from Andrew Svetlov : Now if IDLE was ran from console and then terminated by or kill signal — background process keep living forever. That process have to stop itself if there are no frontend IDLE. -- assignee: asvetlov messages: 157043 nosy: asvetlov priority: normal

[issue14440] Close background process if IDLE closes abnormally.

2012-03-29 Thread Andrew Svetlov
Changes by Andrew Svetlov : -- components: +IDLE ___ Python tracker <http://bugs.python.org/issue14440> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue14409] IDLE: not executing commands from shell, error with default keybinding for Return

2012-03-29 Thread Andrew Svetlov
Andrew Svetlov added the comment: Roger, now your solution is completely clean for me. I pushed your patch to 2.7, 3.2 and 3.3 branches. Thank you. -- assignee: -> asvetlov resolution: -> fixed stage: patch review -> committed/rejected status: open

[issue14409] IDLE: not executing commands from shell, error with default keybinding for Return

2012-03-29 Thread Andrew Svetlov
Changes by Andrew Svetlov : -- versions: +Python 3.2 ___ Python tracker <http://bugs.python.org/issue14409> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue3035] Removing apparently unwanted functions from Tkinter

2012-03-29 Thread Andrew Svetlov
Andrew Svetlov added the comment: Updated patch. Warning type is DeprecationWarning, docs mentioned that. -- Added file: http://bugs.python.org/file25067/issue3035.diff ___ Python tracker <http://bugs.python.org/issue3

[issue3035] Removing apparently unwanted functions from Tkinter

2012-03-29 Thread Andrew Svetlov
Changes by Andrew Svetlov : -- stage: -> patch review ___ Python tracker <http://bugs.python.org/issue3035> ___ ___ Python-bugs-list mailing list Unsubscri

[issue14446] Remove deprecated tkinter functions

2012-03-29 Thread Andrew Svetlov
New submission from Andrew Svetlov : We need to remove deprecated tkinter.AtEnd and family in 3.4 -- assignee: asvetlov components: Tkinter keywords: easy messages: 157091 nosy: asvetlov, r.david.murray priority: release blocker severity: normal status: open title: Remove deprecated

[issue3035] Removing apparently unwanted functions from Tkinter

2012-03-29 Thread Andrew Svetlov
Andrew Svetlov added the comment: Thank you, David. I've updated the patch. I think making new test for check is easy but Issue14446 is good enough. Running stupid test doesn't make sense for this case. -- Added file: http://bugs.python.org/file25068/issu

[issue14417] dict RuntimeError workaround

2012-03-29 Thread Andrew Svetlov
Changes by Andrew Svetlov : -- nosy: +asvetlov ___ Python tracker <http://bugs.python.org/issue14417> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue11437] IDLE crash on startup with typo in config-keys.cfg

2012-03-29 Thread Andrew Svetlov
Andrew Svetlov added the comment: Roger, can you help me? What steps should I do to reproduce the issue? Pushing config from George.Dhoore into ~/.idlerc does nothing. IDLE starts fine as usual. -- ___ Python tracker <http://bugs.python.

[issue14448] Metnion pytz in datetime's docs

2012-03-29 Thread Andrew Svetlov
New submission from Andrew Svetlov : Python Standard Library itself has not timezone objects. There are well-maintained project named pytz. Let's mention pytz in datetime docs. I have attached a patch, please review it. -- assignee: docs@python components: Documentation

[issue14440] Close background process if IDLE closes abnormally.

2012-03-31 Thread Andrew Svetlov
Andrew Svetlov added the comment: I use Ubuntu Linux 11.10 Hmm, you are right: background process dies. But I'm pretty sure when I worked on IDLE bugs three weeks ago sometimes that process remained to live forever. Aahh. At least sending SIGTERM (kill -9) to foreground IDLE process do

[issue14440] Close background process if IDLE closes abnormally.

2012-03-31 Thread Andrew Svetlov
Changes by Andrew Svetlov : -- type: -> behavior ___ Python tracker <http://bugs.python.org/issue14440> ___ ___ Python-bugs-list mailing list Unsubscri

[issue3035] Removing apparently unwanted functions from Tkinter

2012-03-31 Thread Andrew Svetlov
Andrew Svetlov added the comment: I've updated the patch following David's recommendations, pushed it into default branch. #14446 has been made to remove deprecated code in 3.4 Closing the issue as fixed. -- resolution: remind -> fixed status: o

[issue9016] IDLE won't launch (Win XP)

2012-03-31 Thread Andrew Svetlov
Andrew Svetlov added the comment: Closing as out if date and not active. -- assignee: -> asvetlov resolution: -> out of date stage: -> committed/rejected ___ Python tracker <http://bugs.python.o

[issue5136] Deprecating (and removing) "globalcall", "merge" and "globaleval"

2012-03-31 Thread Andrew Svetlov
Andrew Svetlov added the comment: Will do. -- assignee: -> asvetlov ___ Python tracker <http://bugs.python.org/issue5136> ___ ___ Python-bugs-list mai

[issue6124] Tkinter should support the OS X zoom button

2012-03-31 Thread Andrew Svetlov
Andrew Svetlov added the comment: Closing as lack of interest from community. -- resolution: -> wont fix stage: test needed -> committed/rejected status: open -> closed ___ Python tracker <http://bugs.python.o

[issue14200] Idle shell crash on printing non-BMP unicode character

2012-03-31 Thread Andrew Svetlov
Andrew Svetlov added the comment: Closing again. Now IDLE works fine both in subprocess and inprocess mode. Future support of non-BMP can be continues after implementing codec for that — #14304 Now I like to close that as «good enough for now». At least IDLE doesn't crashed on pri

[issue9016] IDLE won't launch (Win XP)

2012-03-31 Thread Andrew Svetlov
Changes by Andrew Svetlov : -- status: open -> closed ___ Python tracker <http://bugs.python.org/issue9016> ___ ___ Python-bugs-list mailing list Unsubscri

[issue8515] idle "Run Module" (F5) does not set __file__ variable

2012-03-31 Thread Andrew Svetlov
Changes by Andrew Svetlov : -- nosy: +asvetlov ___ Python tracker <http://bugs.python.org/issue8515> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue14446] Remove deprecated tkinter functions

2012-03-31 Thread Andrew Svetlov
Andrew Svetlov added the comment: See issue #3035 for details. -- ___ Python tracker <http://bugs.python.org/issue14446> ___ ___ Python-bugs-list mailin

[issue5136] Deprecating (and removing) "globalcall", "merge" and "globaleval"

2012-03-31 Thread Andrew Svetlov
Andrew Svetlov added the comment: Attaching the patch to make depredations. -- keywords: +patch stage: -> patch review Added file: http://bugs.python.org/file25082/issue5136.diff ___ Python tracker <http://bugs.python.org/iss

[issue14446] Remove deprecated tkinter functions

2012-03-31 Thread Andrew Svetlov
Andrew Svetlov added the comment: Also see #5136 for deprecated C Functions from _tkinter.c That set have to go away in 3.4 as well as deprecations from tkinter/__init__.py -- ___ Python tracker <http://bugs.python.org/issue14

[issue5136] Deprecating (and removing) "globalcall", "merge" and "globaleval"

2012-03-31 Thread Andrew Svetlov
Andrew Svetlov added the comment: Pushed deprecation warnings into default branch. #14446 updated to add those function to remove list for 3.4 release. -- resolution: -> fixed stage: patch review -> committed/rejected status: open -&g

[issue5136] Deprecating (and removing) "globalcall", "merge" and "globaleval"

2012-03-31 Thread Andrew Svetlov
Andrew Svetlov added the comment: Thanks to Guilherme Polo for idea and to Éric Araujo for review. -- ___ Python tracker <http://bugs.python.org/issue5

[issue11437] IDLE crash on startup with typo in config-keys.cfg

2012-03-31 Thread Andrew Svetlov
Andrew Svetlov added the comment: I reproduced the bug. Roger Serwy, your patch looks working, but can you describe: 1. Why do you need `self.known_invalid` list? 2. Why do you always extend that list (`known_invalid` variable is just shared alias for `self.known_invalid` member, not list

[issue11437] IDLE crash on startup with typo in config-keys.cfg

2012-03-31 Thread Andrew Svetlov
Andrew Svetlov added the comment: Ok -- ___ Python tracker <http://bugs.python.org/issue11437> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue5680] Command-line arguments when running in IDLE

2012-03-31 Thread Andrew Svetlov
Changes by Andrew Svetlov : -- assignee: -> asvetlov ___ Python tracker <http://bugs.python.org/issue5680> ___ ___ Python-bugs-list mailing list Unsubscri

[issue11437] IDLE crash on startup with typo in config-keys.cfg

2012-03-31 Thread Andrew Svetlov
Andrew Svetlov added the comment: You right. That was my concern. -- ___ Python tracker <http://bugs.python.org/issue11437> ___ ___ Python-bugs-list mailin

[issue7839] Popen should raise ValueError if pass a string when shell=False or a list when shell=True

2012-03-31 Thread Andrew Svetlov
Andrew Svetlov added the comment: I like Eric's proposition, e.g. raising error if (list, shell=True) or (str, shell=False) If nobody object I can try to make initial patch for that. -- ___ Python tracker <http://bugs.python.org/i

[issue14440] Close background process if IDLE closes abnormally.

2012-03-31 Thread Andrew Svetlov
Andrew Svetlov added the comment: Terry, sorry. That's definitely posix-specific bug. I'll make a patch assuming Windows works well with killing IDLE. To be polite I'll describe used signal names shortly. SIGKILL, SIGTERM, SIGINT and SIGQUIT are used to stop process. — SIGK

[issue7839] Popen should raise ValueError if pass a string when shell=False or a list when shell=True

2012-03-31 Thread Andrew Svetlov
Andrew Svetlov added the comment: Nick's library is awesome and I +1 to include it into stdlib if Nick is ready to do. But also I like to prevent obviously bad usage of popen. We cannot and don't want to remove popen shell=True param, so let's add raising exception for use

[issue7839] Popen should raise ValueError if pass a string when shell=False or a list when shell=True

2012-04-01 Thread Andrew Svetlov
Andrew Svetlov added the comment: After trying to make a patch I found what current test suite itself has calls like (str, shell=False), (bytes, shell=True) and (['shell command'], shell=True). We can: 1. Implement Eric's suggestion with fixing/removing broken tests. 2. Add

[issue14440] Close background process if IDLE closes abnormally.

2012-04-01 Thread Andrew Svetlov
Andrew Svetlov added the comment: We can install signal handlers for everything what can stop process but I prefer to pass IDLE pid to subintepreter and periodically check for prime process existing. -- ___ Python tracker <http://bugs.python.

[issue14470] Remove use of w9xopen in subporcess module

2012-04-01 Thread Andrew Svetlov
New submission from Andrew Svetlov : As Python 3.3 declare: Windows 2000 and Windows platforms which set COMSPEC to command.com are no longer supported due to maintenance burden. We need to drop corresponding code from subprocess. -- keywords: easy messages: 157321 nosy: asvetlov

[issue7839] Popen should raise ValueError if pass a string when shell=False or a list when shell=True

2012-04-01 Thread Andrew Svetlov
Andrew Svetlov added the comment: BTW we need to drop win9x and win2000 support, see #14470 -- ___ Python tracker <http://bugs.python.org/issue7839> ___ ___ Pytho

[issue7839] Popen should raise ValueError if pass a string when shell=False or a list when shell=True

2012-04-01 Thread Andrew Svetlov
Andrew Svetlov added the comment: I'm +1 for going though deprecation process for Popen args to make parameters combination clean and obvious. -- ___ Python tracker <http://bugs.python.org/i

[issue14470] Remove use of w9xopen in subporcess module

2012-04-01 Thread Andrew Svetlov
Changes by Andrew Svetlov : -- components: +Library (Lib), Windows priority: normal -> critical ___ Python tracker <http://bugs.python.org/issue14470> ___ _

[issue14470] Remove using of w9xopen in subporcess module

2012-04-01 Thread Andrew Svetlov
Changes by Andrew Svetlov : -- title: Remove use of w9xopen in subporcess module -> Remove using of w9xopen in subporcess module ___ Python tracker <http://bugs.python.org/issu

[issue802310] tkFont may reuse font names

2012-04-02 Thread Andrew Svetlov
Changes by Andrew Svetlov : -- assignee: -> asvetlov ___ Python tracker <http://bugs.python.org/issue802310> ___ ___ Python-bugs-list mailing list Unsubscri

[issue802310] tkFont may reuse font names

2012-04-02 Thread Andrew Svetlov
Andrew Svetlov added the comment: I've pushed fix inspired by Guilherme's suggestion. Fix has been applied to 3.3 only because: 1. It changes font name generation schema 2. It's definitelly minor issue as exists starting from 2003. Thanks. -- resolution: -> fixed s

[issue6015] Tkinter Scrollbar in OS X 10.5

2012-04-02 Thread Andrew Svetlov
Andrew Svetlov added the comment: Can anybody confirm this bug for OS X? -- nosy: +asvetlov, ned.deily type: performance -> behavior versions: +Python 3.3 -Python 2.6 ___ Python tracker <http://bugs.python.org/iss

[issue14480] os.kill on Windows should accept zero as signal

2012-04-03 Thread Andrew Svetlov
New submission from Andrew Svetlov : Starting from 3.2 Python supports os.kill for Windows. It process signal.CTRL_C_EVENT and signal.CTRL_BREAK_EVENT, and kills pid for all other signals. Posix allows to pass zero signal to check pid for existing. It will be nice to keep that behavior for

[issue14484] missing return in win32_kill?

2012-04-03 Thread Andrew Svetlov
Andrew Svetlov added the comment: Antonie, you right. -- ___ Python tracker <http://bugs.python.org/issue14484> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue14440] Close background process if IDLE closes abnormally.

2012-04-03 Thread Andrew Svetlov
Andrew Svetlov added the comment: I still prefer to check in subprocess for parent proc existing. -- ___ Python tracker <http://bugs.python.org/issue14

[issue14480] os.kill on Windows should accept zero as signal

2012-04-03 Thread Andrew Svetlov
Andrew Svetlov added the comment: There are no `kill` function in Windows API. >From my perspective win32_kill was added to emulate posix sibling if possible. >If not — better to give another Windows native name to that function. Really don't see good solution. Maybe better wha

[issue12979] tkinter.font.Font object not usable as font option

2012-04-03 Thread Andrew Svetlov
Andrew Svetlov added the comment: The test from ilikepython is incorrect, but after changing to: import tkinter import tkinter.font root = tkinter.Tk() w = tkinter.Frame(root) f = tkinter.font.Font(root, family='Arial', size=30) label = tkinter.Label(w, text="Hello"

<    5   6   7   8   9   10   11   12   13   14   >