[issue6667] logging config - using of FileHandler's delay argument?

2009-08-08 Thread Vinay Sajip
Changes by Vinay Sajip : -- resolution: -> works for me status: open -> pending ___ Python tracker ___ ___ Python-bugs-list mailing li

[issue2637] urllib.quote() escapes characters unnecessarily and contrary to docs

2009-08-08 Thread Senthil
Senthil added the comment: The way to handle this issue would be add these characters '%/:=&?~#+!$,;'@()*[]' to always_safe list. There has been a similar issue in the past Issue918368, tough in a different context. And if you see, urllib.urlopen function always passes these values as the sa

[issue1712522] urllib.quote throws exception on Unicode URL

2009-08-08 Thread Senthil
Changes by Senthil : -- assignee: -> orsenthil resolution: -> accepted type: -> behavior ___ Python tracker ___ ___ Python-bugs-l

[issue6557] urllib.urlopen creates bad requests when location header of 301 redirects contain spaces

2009-08-08 Thread Senthil
Senthil added the comment: This bug is already fixed in trunk (Python2.7) and py3k branch - Issue918368. I see that the fix was not backported, I shall do that (once the svn is up). -- resolution: -> accepted versions: +Python 2.6 -Python 2.5 ___ P

[issue6583] 2to3 fails to fix test.test_support

2009-08-08 Thread Benjamin Peterson
Benjamin Peterson added the comment: We decided a while ago that it wasn't worth adding the complication to fix_imports to handle this case, since test.test_support isn't technically public API. -- nosy: +benjamin.peterson resolution: -> wont fix status: open -> closed ___

[issue6670] Printing the 'The Python Tutorial'

2009-08-08 Thread brimac
New submission from brimac : I am having a problem when printing 'The Python Tutorial' at http://docs.python.org/tutorial/ I am using XP and Firefox and an HP Laserjet. The page displays OK but the printout has a 68 mm margin on the left. The margin on the right is 18 mm but the text is cut off,

[issue6617] During compiling python 3.1 getting error Undefined symbol libintl_bind_textdomain_codeset

2009-08-08 Thread Sandip Thorat
Sandip Thorat added the comment: Plz assist to install Python on Solaris_x86 -- ___ Python tracker ___ ___ Python-bugs-list mailing li

[issue1028] Tkinter binding involving Control-spacebar raises unicode error

2009-08-08 Thread Guilherme Polo
Guilherme Polo added the comment: Today I noticed the StringObj manpage (from tcl) says that the bytes that represent an tcl object should be treated as read-only (although it uses char *) so this issue1028.diff may very well cause a segfault at some point. I'm attaching a new patch that fixes

[issue6667] logging config - using of FileHandler's delay argument?

2009-08-08 Thread Vinay Sajip
Changes by Vinay Sajip : -- assignee: -> vsajip ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyt

[issue6667] logging config - using of FileHandler's delay argument?

2009-08-08 Thread Vinay Sajip
Vinay Sajip added the comment: Please attach a complete configuration file (with the delay parameter in the args) and a short script which loads this configuration and demonstrates the problem. -- nosy: +vsajip ___ Python tracker

[issue6461] multiprocessing: freezing apps on Windows

2009-08-08 Thread Jesse Noller
Jesse Noller added the comment: Thanks for following up on this Stuart - I'll update the docs accordingly -- ___ Python tracker ___ __

[issue2637] urllib.quote() escapes characters unnecessarily and contrary to docs

2009-08-08 Thread Nir Soffer
Nir Soffer added the comment: You can control what is safe in your particular context using the safe keyword argument. How do you want to support unicode? you must decide which character encoding you like, which depends on the server side decoding the url. Just document the fact that this fu