[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 list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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 safe parameter to the quote function,

fullurl = quote(fullurl, safe="%/:=&?~#+!$,;'@()*[]")

Handling of unicode is a different issue, but for the current report,
this change should suffice.

--
assignee: georg.brandl -> orsenthil

___
Python tracker 

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



[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-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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

___
Python tracker 

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



[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

___
Python tracker 

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



[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, sometimes
mid-letter. The other 14 pages in the tutorial have the same problem.
I've tried changing from Portrait to Landscape. The text gets wider, the
margins are the same size, and the text is still cut off.
I have not noticed this with any other documents, on this website or
elsewhere. I'm sure if you print/preview you will see the problem.
My guess is that there is a fault with the printout file at python.org

--
assignee: georg.brandl
components: Documentation
messages: 91422
nosy: brimac, georg.brandl
severity: normal
status: open
title: Printing the 'The Python Tutorial'
type: behavior
versions: Python 2.6

___
Python tracker 

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



[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 list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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 this and also uses
Tcl_GetStringFromObj, instead of directly accessing the bytes member of
a tcl object, so we know its string representation is not invalid.

--
Added file: http://bugs.python.org/file14677/issue1028_2.diff

___
Python tracker 

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



[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.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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 

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



[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 

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



[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 function does not accept unicode.

--
nosy: +nirs

___
Python tracker 

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