[issue843590] 'macintosh' encoding alias for 'mac_roman'

2010-08-21 Thread Marc-Andre Lemburg

Marc-Andre Lemburg  added the comment:

Benjamin Peterson wrote:
> 
> Benjamin Peterson  added the comment:
> 
> r84229

Thanks, Benjamin !

--

___
Python tracker 

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



[issue9655] urllib2 fails to retrieve a url which is handled correctly by urllib

2010-08-21 Thread Albert Weichselbraun

New submission from Albert Weichselbraun :

urllib2 fails to retrieve the content of 
http://www.mfsa.com.mt/insguide/english/glossarysearch.jsp?letter=all

>>> urllib2.urlopen("http://www.mfsa.com.mt/insguide/english/glossarysearch.jsp?letter=all";).read()
''

urllib handles the same link correctly:

>>> len( 
>>> urllib.urlopen("http://www.mfsa.com.mt/insguide/english/glossarysearch.jsp?letter=all";).read()
>>>  )
56105

--
components: Library (Lib)
messages: 114482
nosy: Albert.Weichselbraun
priority: normal
severity: normal
status: open
title: urllib2 fails to retrieve a url which is handled correctly by urllib
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



[issue9655] urllib2 fails to retrieve a url which is handled correctly by urllib

2010-08-21 Thread Senthil Kumaran

Senthil Kumaran  added the comment:

Its funny, confirmed the problem in the trunk.

--
assignee:  -> orsenthil
nosy: +orsenthil
resolution:  -> accepted
stage:  -> needs patch

___
Python tracker 

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



[issue1005895] curses for win32

2010-08-21 Thread Mark Lawrence

Mark Lawrence  added the comment:

Tim: mainly because this was raised some 4 years earlier and the title of #2889 
"curses for windows (alternative patch)"

--

___
Python tracker 

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



[issue1103350] send/recv SEGMENT_SIZE should be used more in socketmodule

2010-08-21 Thread Mark Lawrence

Mark Lawrence  added the comment:

I'll close this in a couple of weeks unless anyone objects.

--
status: open -> pending

___
Python tracker 

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



[issue9655] urllib2 fails to retrieve a url which is handled correctly by urllib

2010-08-21 Thread Amaury Forgeot d'Arc

Amaury Forgeot d'Arc  added the comment:

Hmm, it looks like a web server problem to me.

urllib2 uses the HTTP/1.1 protocol, and sends the "Connection: close" header. I 
hacked urllib2: when this header is not sent, the content is retrieved normally.

This page: 
http://www.mail-archive.com/us...@tomcat.apache.org/msg28684.html
describes the same problem.
The web site above does use Tomcat (can be seen in the response headers), maybe 
they have a wrong version?

--
nosy: +amaury.forgeotdarc

___
Python tracker 

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



[issue9655] urllib2 fails to retrieve a url which is handled correctly by urllib

2010-08-21 Thread Florent Xicluna

Florent Xicluna  added the comment:

Confirmed with telnet sessions:

== Simulate "urllib2" ==

$ telnet www.mfsa.com.mt 80
GET /insguide/english/glossarysearch.jsp?letter=all HTTP/1.1
Accept-Encoding: identity
Host: www.mfsa.com.mt
Connection: close
User-Agent: Python-urllib/2.7

HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Set-Cookie: JSESSIONID=D34D395A7654B6532F6F6DFF81FC91C3; Path=/insguide
Content-Type: text/html
Date: Sat, 21 Aug 2010 11:54:25 GMT
Connection: close

Connection closed by foreign host.
$ 

== Simulate "urllib" ==

GET /insguide/english/glossarysearch.jsp?letter=all HTTP/1.0
Host: www.mfsa.com.mt
User-Agent: Python-urllib/1.17

HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Set-Cookie: JSESSIONID=84D9D8DF76546751908F388D8889BB47; Path=/insguide
Content-Type: text/html
Transfer-Encoding: chunked
Date: Sat, 21 Aug 2010 11:54:06 GMT

400
...
$

--
nosy: +flox
versions: +Python 2.7

___
Python tracker 

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



[issue1122916] incorrect handle of declaration in markupbase

2010-08-21 Thread Mark Lawrence

Mark Lawrence  added the comment:

Fixed in #1442874.

--
nosy: +BreamoreBoy
resolution:  -> duplicate
status: open -> closed

___
Python tracker 

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



[issue1145257] shutil.copystat() may fail...

2010-08-21 Thread Mark Lawrence

Changes by Mark Lawrence :


--
versions:  -Python 2.6, Python 3.3

___
Python tracker 

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



[issue1666318] shutil.copytree doesn't preserve directory permissions

2010-08-21 Thread Mark Lawrence

Changes by Mark Lawrence :


--
versions: +Python 2.7, Python 3.1, Python 3.2 -Python 2.6, Python 3.0

___
Python tracker 

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



[issue1149447] bsddb wrapper does not export some low-level functions

2010-08-21 Thread Mark Lawrence

Mark Lawrence  added the comment:

This won't happen as bsddb was removed from py3k.

--
nosy: +BreamoreBoy
resolution:  -> out of date
status: open -> closed
title: bssdb wrapper does not export some low-level functions -> bsddb wrapper 
does not export some low-level functions

___
Python tracker 

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



[issue1155362] Bugs in parsedate_tz

2010-08-21 Thread Mark Lawrence

Changes by Mark Lawrence :


--
versions: +Python 2.7, Python 3.1, Python 3.2 -Python 2.6

___
Python tracker 

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



[issue1158490] locale fails if LANGUAGE has multiple locales

2010-08-21 Thread Mark Lawrence

Changes by Mark Lawrence :


--
versions: +Python 2.7, Python 3.1 -Python 3.3

___
Python tracker 

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



[issue1159051] Handle corrupted gzip files with unexpected EOF

2010-08-21 Thread Mark Lawrence

Changes by Mark Lawrence :


--
stage:  -> needs patch
type:  -> behavior
versions: +Python 2.7, Python 3.1, Python 3.2

___
Python tracker 

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



[issue1160328] urllib2 post error when using httpproxy

2010-08-21 Thread Mark Lawrence

Changes by Mark Lawrence :


--
versions: +Python 2.7, Python 3.1, Python 3.2 -Python 2.6

___
Python tracker 

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



[issue1162477] Parsing failures in parsedate_tz

2010-08-21 Thread Mark Lawrence

Changes by Mark Lawrence :


--
nosy: +r.david.murray
versions: +Python 3.2 -Python 2.7

___
Python tracker 

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



[issue1170766] weakref.proxy incorrect behaviour

2010-08-21 Thread Mark Lawrence

Mark Lawrence  added the comment:

I'll close this in a couple of weeks unless anyone objects.

--
nosy: +BreamoreBoy
status: open -> pending

___
Python tracker 

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



[issue1172011] BaseCookie should call value_decode from __getitem__

2010-08-21 Thread Mark Lawrence

Mark Lawrence  added the comment:

No reply to msg109888.

--
status: open -> closed

___
Python tracker 

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



[issue1175004] Export more libreadline API functions

2010-08-21 Thread Mark Lawrence

Changes by Mark Lawrence :


--
versions: +Python 3.2 -Python 2.7

___
Python tracker 

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



[issue1260171] subprocess: more general (non-buffering) communication

2010-08-21 Thread Mark Lawrence

Changes by Mark Lawrence :


--
versions:  -Python 2.7

___
Python tracker 

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



[issue1175984] Make subprocess.Popen support file-like objects (win)

2010-08-21 Thread Mark Lawrence

Changes by Mark Lawrence :


--
versions: +Python 3.2 -Python 2.7

___
Python tracker 

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



[issue1699853] locale.getlocale() output fails as setlocale() input

2010-08-21 Thread Mark Lawrence

Changes by Mark Lawrence :


--
versions: +Python 2.7, Python 3.1, Python 3.2 -Python 2.6

___
Python tracker 

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



[issue1176504] locale._build_localename treatment for utf8

2010-08-21 Thread Mark Lawrence

Mark Lawrence  added the comment:

Would someone please look at the two line patch as svn wouldn't let me apply it.

--
nosy: +BreamoreBoy
stage: unit test needed -> patch review
versions: +Python 2.7, Python 3.1, Python 3.2 -Python 2.6

___
Python tracker 

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



[issue1178136] cgitb.py support for frozen images

2010-08-21 Thread Mark Lawrence

Changes by Mark Lawrence :


--
stage: unit test needed -> patch review
versions: +Python 3.2 -Python 2.7

___
Python tracker 

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



[issue9651] ctypes crash when writing zerolength string buffer to file

2010-08-21 Thread Amaury Forgeot d'Arc

Amaury Forgeot d'Arc  added the comment:

Confirmed on all versions since 2.6. Patch attached.

--
keywords: +patch
nosy: +amaury.forgeotdarc
stage:  -> patch review
Added file: http://bugs.python.org/file18595/ctypes-buffer.patch

___
Python tracker 

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



[issue1178863] Variable.__init__ uses self.set(), blocking specialization

2010-08-21 Thread Mark Lawrence

Changes by Mark Lawrence :


--
assignee: loewis -> gpolo
nosy: +gpolo
versions: +Python 3.2 -Python 2.7

___
Python tracker 

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



[issue5353] Improve IndexError messages with actual values

2010-08-21 Thread Mark Lawrence

Changes by Mark Lawrence :


--
versions: +Python 3.2 -Python 2.7, Python 3.1

___
Python tracker 

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



[issue1182143] making builtin exceptions more informative

2010-08-21 Thread Mark Lawrence

Changes by Mark Lawrence :


--
components: +Interpreter Core -Library (Lib)
versions:  -Python 2.7

___
Python tracker 

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



[issue1182788] ZipFile __del__/close problem with longint/long files

2010-08-21 Thread Mark Lawrence

Changes by Mark Lawrence :


--
versions: +Python 2.7, Python 3.1, Python 3.2 -Python 2.6

___
Python tracker 

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



[issue1185124] pydoc doesn't find all module doc strings

2010-08-21 Thread Mark Lawrence

Changes by Mark Lawrence :


--
versions: +Python 2.7, Python 3.1, Python 3.2 -Python 2.6

___
Python tracker 

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



[issue1186900] nntplib shouldn't raise generic EOFError

2010-08-21 Thread Mark Lawrence

Mark Lawrence  added the comment:

The OP would accept a documentation change if the code's not going to be 
changed.

--
nosy: +BreamoreBoy
versions: +Python 3.2 -Python 2.7

___
Python tracker 

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



[issue1189811] pydoc may hide non-private doc strings.

2010-08-21 Thread Mark Lawrence

Changes by Mark Lawrence :


--
versions: +Python 3.2 -Python 2.7

___
Python tracker 

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



[issue1191964] asynchronous Subprocess

2010-08-21 Thread Mark Lawrence

Mark Lawrence  added the comment:

PEP 3145 has been written in response to this request.

--
nosy: +BreamoreBoy
versions:  -Python 2.7

___
Python tracker 

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



[issue1194222] parsedate and Y2K

2010-08-21 Thread Mark Lawrence

Mark Lawrence  added the comment:

I couldn't apply the py3k version of the patch which contains changed unit 
tests.  Would someone please review this patch.

--
nosy: +BreamoreBoy
stage: unit test needed -> patch review
versions: +Python 3.2 -Python 2.7, Python 3.1

___
Python tracker 

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



[issue1195571] simple callback system for Py_FatalError

2010-08-21 Thread Mark Lawrence

Changes by Mark Lawrence :


--
versions: +Python 3.2 -Python 2.7

___
Python tracker 

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



[issue1198569] string.Template not flexible enough to subclass (regexes)

2010-08-21 Thread Mark Lawrence

Changes by Mark Lawrence :


--
versions: +Python 3.2 -Python 2.7

___
Python tracker 

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



[issue1200313] HTMLParser fails to handle charref in attribute value

2010-08-21 Thread Mark Lawrence

Changes by Mark Lawrence :


--
versions: +Python 3.2 -Python 2.7

___
Python tracker 

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



[issue1205568] Compile fails on Darwin8 with --with-cxx=g++

2010-08-21 Thread Mark Lawrence

Mark Lawrence  added the comment:

No reply to msg60740.

--
nosy: +BreamoreBoy
resolution:  -> out of date
status: open -> closed

___
Python tracker 

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



[issue1207466] installer ignores changed installation directory

2010-08-21 Thread Mark Lawrence

Changes by Mark Lawrence :


--
stage:  -> needs patch
type:  -> behavior
versions: +Python 2.7, Python 3.1, Python 3.2

___
Python tracker 

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



[issue1194222] parsedate and Y2K

2010-08-21 Thread Jeffrey Finkelstein

Jeffrey Finkelstein  added the comment:

Sorry about that; the diff paths have the "a/" and "b/" prefixes. Patch with 
-p1 at the top-level directory:

  patch -p1 < issue1194222fix-py3k.diff

--

___
Python tracker 

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



[issue1194222] parsedate and Y2K

2010-08-21 Thread Éric Araujo

Éric Araujo  added the comment:

-p1 is the default for patch, so it should work.

Is this a bug fix or a feature request? It’s unclear. If it’s a bug fix, please 
add 2.7 and 3.1 to versions.

--
assignee:  -> r.david.murray
nosy: +eric.araujo, l0nwlf, r.david.murray

___
Python tracker 

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



[issue1170766] weakref.proxy incorrect behaviour

2010-08-21 Thread Armin Rigo

Armin Rigo  added the comment:

All the missing type slots I reported can cause incorrect behavior very similar 
to the one reported originally.  For example (in Python 2.7):

class I(int): pass
i = I(123)
hex(i)   => '0x7b'
hex(weakref.proxy(i))=> TypeError

I think that the present bug report is fine to report these as bugs, as I don't 
see the point of opening another bug report with the same title.  I will just 
re-mark this issue as "open - not resolved".

--
resolution: accepted -> 
status: pending -> open

___
Python tracker 

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



[issue1194222] parsedate and Y2K

2010-08-21 Thread Jeffrey Finkelstein

Jeffrey Finkelstein  added the comment:

I suppose this is a bug fix because it changes the behavior of 
email.utils.parsedate_tz() to match the RFC standards.

--
versions: +Python 2.7, Python 3.1

___
Python tracker 

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



[issue9655] urllib2 fails to retrieve a url which is handled correctly by urllib

2010-08-21 Thread Senthil Kumaran

Senthil Kumaran  added the comment:

Thanks Amaury, that was nice debugging.

The problem is with Apache tomcat server at the remote end, which is  
misbehaving on Connection:close header being sent by urllib2. We can't do 
anything about it, the bug reporter can take it up with server.

However, in the Urllib2 documentation, if needed, it can be mentioned that 
urllib2 is sending Connection:close while using HTTP/1.1 whereas urllib uses 
HTTP/1.0.

Closing this bug as Invalid.

--
resolution: accepted -> invalid
stage: needs patch -> committed/rejected
status: open -> closed

___
Python tracker 

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



[issue1208304] urllib2's urlopen() method causes a memory leak

2010-08-21 Thread Mark Lawrence

Mark Lawrence  added the comment:

On Windows Vista I can consistently reproduce this with 2.6 and 2.7 but not 
with 3.1 or 3.2.

--
nosy: +BreamoreBoy

___
Python tracker 

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



[issue1227748] subprocess: inheritance of std descriptors inconsistent

2010-08-21 Thread Mark Lawrence

Changes by Mark Lawrence :


--
stage:  -> needs patch
type:  -> behavior
versions: +Python 2.7, Python 3.1, Python 3.2 -Python 2.4

___
Python tracker 

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



[issue1228112] code.py use sys.excepthook to display exceptions

2010-08-21 Thread Mark Lawrence

Changes by Mark Lawrence :


--
stage: unit test needed -> patch review
versions: +Python 3.2 -Python 2.7

___
Python tracker 

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



[issue1229239] optionally allow mutable builtin types

2010-08-21 Thread Mark Lawrence

Changes by Mark Lawrence :


--
stage: unit test needed -> patch review
versions: +Python 3.2 -Python 2.7

___
Python tracker 

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



[issue9601] ftplib should accept 250 on MKD

2010-08-21 Thread Giampaolo Rodola'

Giampaolo Rodola'  added the comment:

Given Antoine comment and the link referencing bzr issue I agree we should fix 
this now.
A patch including tests for parse257 function is in attachment.
The exception is now raised only if the response code doesn't fall in the 2xx 
category; for responses != 257 '' is returned.
I'm +1 on including this only in 3.2.

--
keywords: +patch
Added file: http://bugs.python.org/file18596/ftplib-257-workaround.patch

___
Python tracker 

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



[issue1182788] ZipFile __del__/close problem with longint/long files

2010-08-21 Thread Amaury Forgeot d'Arc

Amaury Forgeot d'Arc  added the comment:

At the time, zipfile.py did not support the ZIP64 format...

--
nosy: +amaury.forgeotdarc
resolution:  -> out of date
status: open -> closed

___
Python tracker 

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



[issue1194222] parsedate and Y2K

2010-08-21 Thread Éric Araujo

Éric Araujo  added the comment:

What I wrote on Rietveld:

I don’t know much about email, but the code itself looks good to me. The fact 
that you didn’t have to change any test but added one is reassuring (unless it 
reveals lack of coverage).

http://codereview.appspot.com/217107/diff/1/2#newcode1
Lib/email/_parseaddr.py:1: # Copyright (C) 2002-2007, 2010 Python Software 
Foundation
“2002-2010” would make more sense.

http://codereview.appspot.com/217107/diff/1/2#newcode24
Lib/email/_parseaddr.py:24: DOY_UNKNOWN = 1
Can you add a comment explaining what DOY means, unless it’s obvious for email 
specialists?

--

___
Python tracker 

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



[issue9656] compiler module provides wrong AST for extended slice of length 1

2010-08-21 Thread Kay Hayen

New submission from Kay Hayen :

Please check the following:

[GCC 4.4.5 20100728 (prerelease)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import compiler
>>> compiler.parse( "d[1,] = None" )
Module(None, Stmt([Assign([Subscript(Name('d'), 'OP_ASSIGN', [Const(1)])], 
Name('None'))]))
>>> compiler.parse( "d[1] = None" )
Module(None, Stmt([Assign([Subscript(Name('d'), 'OP_ASSIGN', [Const(1)])], 
Name('None'))]))
>>> d = {}
>>> d[1,] = None
>>> d[1] = None
>>> d
{1: None, (1,): None}

As you can see d[1] = None and d[1,] = None do different things, but do they 
lead to the same abstract syntax tree. It's the same on Python 2.7:

Python 2.7.0+ (r27:82500, Aug  7 2010, 19:41:51) 
[GCC 4.4.5 20100728 (prerelease)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import compiler
>>> compiler.parse( "d[1,] = None" )
Module(None, Stmt([Assign([Subscript(Name('d'), 'OP_ASSIGN', [Const(1)])], 
Name('None'))]))
>>> compiler.parse( "d[1] = None" )
Module(None, Stmt([Assign([Subscript(Name('d'), 'OP_ASSIGN', [Const(1)])], 
Name('None'))]))

--
components: Library (Lib)
messages: 114507
nosy: kayhayen
priority: normal
severity: normal
status: open
title: compiler module provides wrong AST for extended slice of length 1
type: behavior
versions: Python 2.6, Python 2.7

___
Python tracker 

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



[issue1170766] weakref.proxy incorrect behaviour

2010-08-21 Thread Mark Lawrence

Changes by Mark Lawrence :


--
versions: +Python 2.7, Python 3.1, Python 3.2 -Python 2.4

___
Python tracker 

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



[issue9157] Allow inspection of used decorators on a function

2010-08-21 Thread Éric Araujo

Éric Araujo  added the comment:

I have added people from the nosy list of #9567. What do you think about this 
idea?

--
nosy: +eric.araujo, ncoghlan, r.david.murray, rhettinger

___
Python tracker 

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



[issue8997] Write documentation for codecs.readbuffer_encode()

2010-08-21 Thread Éric Araujo

Changes by Éric Araujo :


--
nosy: +d...@python
stage:  -> needs patch
versions:  -Python 3.3

___
Python tracker 

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



[issue9023] distutils relative path errors

2010-08-21 Thread Éric Araujo

Éric Araujo  added the comment:

I’m not sure how I feel about paths going to the parent directory. Your use 
case is not imaginary or contrived, but I’m uncomfortable with going out of the 
source tree.

Your setup script would work if the setup script was in the root of the source 
tree, right? In this case, I would requalify this as a doc bug. Can you test 
this solution (also with distutils-only code)? Thank you.

--
versions: +Python 2.7, Python 3.1

___
Python tracker 

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



[issue8851] pkgutil document needs more markups

2010-08-21 Thread Éric Araujo

Éric Araujo  added the comment:

Thanks for the report. Patch looks good to me. I assume the other function 
descriptions already have complete markup, since your patch touches only two of 
them.

If there are no remarks from d...@python or objections from Georg, I will apply 
this in a week, taking care of all three branches.

--
assignee: d...@python -> eric.araujo
nosy: +eric.araujo
versions: +Python 2.7, Python 3.1, Python 3.2 -Python 2.6

___
Python tracker 

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



[issue8851] pkgutil documentation needs more markup

2010-08-21 Thread Éric Araujo

Changes by Éric Araujo :


--
resolution:  -> accepted
stage:  -> patch review
status: open -> pending
title: pkgutil document needs more markups -> pkgutil documentation needs more 
markup

___
Python tracker 

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



[issue1229646] httplib error checking.

2010-08-21 Thread Mark Lawrence

Mark Lawrence  added the comment:

The offending code has already been removed from all Python versions.

--
nosy: +BreamoreBoy
resolution:  -> fixed
status: open -> closed

___
Python tracker 

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



[issue8250] Implement pkgutil APIs as described in PEP 376

2010-08-21 Thread Éric Araujo

Éric Araujo  added the comment:

I’m reversing the duplicate relation, since the other report has more messages 
and nosy users.

--
resolution:  -> duplicate
stage:  -> committed/rejected
status: open -> closed
superseder:  -> Implement PEP 376
versions:  -Python 3.3

___
Python tracker 

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



[issue4908] Implement PEP 376

2010-08-21 Thread Éric Araujo

Éric Araujo  added the comment:

Reversing the duplicate relation with #8250 since this report has more messages.

Not reopening though, since the work is done. Kudos to Josip!

--

___
Python tracker 

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



[issue4908] Implement pkgutil APIs as described in PEP 376

2010-08-21 Thread Éric Araujo

Changes by Éric Araujo :


--
resolution: duplicate -> fixed
superseder: Implement pkgutil APIs as described in PEP 376 -> 
title: Implement PEP 376 -> Implement pkgutil APIs as described in PEP 376
versions: +Python 2.5, Python 2.6, Python 3.1

___
Python tracker 

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



[issue9157] Allow inspection of used decorators on a function

2010-08-21 Thread Nick Coghlan

Nick Coghlan  added the comment:

How?

It was easy for wraps to add the __wrapped__ attribute, since it has access to 
both the wrapping function and the function being wrapped.

But it hasn't got a clue as to the identity of the decorator that is applying 
the wrapper.

Absent a concrete suggestion for how to actually do this cleanly, I'm inclined 
to reject the idea as being infeasible given the way decorators are applied.

--

___
Python tracker 

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



[issue2180] tokenize: mishandles line joining

2010-08-21 Thread Mark Lawrence

Changes by Mark Lawrence :


--
versions: +Python 2.7, Python 3.1, Python 3.2 -Python 2.6

___
Python tracker 

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



[issue658749] asyncore connect() and winsock errors

2010-08-21 Thread Giampaolo Rodola'

Giampaolo Rodola'  added the comment:

The only windows-related error on connect() should be EINVAL
>From http://msdn.microsoft.com/en-us/library/ms737625 :

> WSAEALREADY
> A nonblocking connect call is in progress on the specified socket.

The same approach is adopted by Twisted which just returns in that case.
A patch is in attachment.
Assigning the issue to me as a reminder to commit the patch if no further 
comments are submitted in the next days.

--
assignee: josiahcarlson -> giampaolo.rodola
keywords: +patch
Added file: http://bugs.python.org/file18597/asyncore-winerrors.patch

___
Python tracker 

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



[issue658749] asyncore connect() and winsock errors

2010-08-21 Thread Giampaolo Rodola'

Changes by Giampaolo Rodola' :


--
stage: needs patch -> 

___
Python tracker 

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



[issue1230484] tokenize bug

2010-08-21 Thread Mark Lawrence

Mark Lawrence  added the comment:

Fixed in r51526.

--
dependencies:  -tokenize: mishandles line joining
nosy: +BreamoreBoy
resolution:  -> fixed
status: open -> closed

___
Python tracker 

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



[issue658749] asyncore connect() and winsock errors

2010-08-21 Thread Mark Lawrence

Changes by Mark Lawrence :


--
stage:  -> patch review

___
Python tracker 

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



[issue9157] Allow inspection of used decorators on a function

2010-08-21 Thread Raymond Hettinger

Raymond Hettinger  added the comment:

I concur with Nick.  If you want to develop your __DECORATORS__ idea further, 
it should be done off-list.  ISTM, this is more of a shot in the dark than a 
concrete plan to solve known, real problems.

--
resolution:  -> rejected
status: open -> closed

___
Python tracker 

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



[issue6011] python doesn't build if prefix contains non-ascii characters

2010-08-21 Thread Éric Araujo

Changes by Éric Araujo :


--
nosy: +eric.araujo, haypo
versions: +Python 2.7, Python 3.2

___
Python tracker 

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



[issue6822] Error calling .storlines from ftplib

2010-08-21 Thread Giampaolo Rodola'

Giampaolo Rodola'  added the comment:

Just my 2 cents to add that FTP ASCII mode should consists in nothing but 
replacing os.sep in "\r\n" before sending file data.
The opposite operation must be done by the receiving peer which has to read the 
data from the socket and replace "\r\n" with os.sep.
That should be all: no further conversion should be done against the data.

--

___
Python tracker 

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



[issue9023] distutils relative path errors

2010-08-21 Thread Greg Hazel

Greg Hazel  added the comment:

The python setup script is for the python module, which is in a subdirectory of 
the C library project. I am not going to move setup.py to the root directory 
just to work around a a distutils bug.

This distutils bug could cause it to overwrite files in other directories, 
since it blindly adds relative paths to the build directory. This is clearly 
broken.

I've changed my code to use os.path.abspath() while I wait for a fix.

--

___
Python tracker 

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



[issue8750] Many of MutableSet's methods assume that the other parameter is not self

2010-08-21 Thread Raymond Hettinger

Changes by Raymond Hettinger :


--
assignee: stutzbach -> rhettinger

___
Python tracker 

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



[issue9023] distutils relative path errors

2010-08-21 Thread Éric Araujo

Éric Araujo  added the comment:

> I am not going to move setup.py to the root directory just to work
> around a a distutils bug.
Fair enough.

> This distutils bug could cause it to overwrite files in other
> directories, since it blindly adds relative paths to the build
> directory. This is clearly broken.
Ah, I hadn’t understood that. I agree with you.

> I've changed my code to use os.path.abspath() while I wait for a
> fix.
Does this means that your code works with paths that go to the parent 
directory? I don’t know if it’s right to allow that (I mean this literally: I’m 
not the main maintainer and I don’t have much packaging experience).

--

___
Python tracker 

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



[issue9656] compiler module provides wrong AST for extended slice of length 1

2010-08-21 Thread Éric Araujo

Éric Araujo  added the comment:

Thank you for the report. I have added  people found in Misc/maintainers.rst ot 
the nosy list, and also removed 2.6 since it’s in security mode and does not 
get bug fixes anymore.

--
nosy: +benjamin.peterson, brett.cannon, eric.araujo, georg.brandl, ncoghlan
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



[issue9053] distutils compiles extensions so that Python.h cannot be found

2010-08-21 Thread Éric Araujo

Éric Araujo  added the comment:

Jean-Paul, can you still reproduce the bug?

According to Antoine, the configure script has seen changes but sysconfig has 
not been updated; this could be the source of a handful of bugs.

--
nosy: +eric.araujo

___
Python tracker 

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



[issue1635363] Add command line help to windows unistall binary

2010-08-21 Thread Éric Araujo

Éric Araujo  added the comment:

New features are not added to distutils.

Tarek and Windows experts, do we want to remove bdist_wininst in favor of 
bdist_msi in distutils2?

--
nosy: +eric.araujo, loewis
status: open -> pending

___
Python tracker 

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



[issue1382562] --install-base not honored on win32

2010-08-21 Thread Éric Araujo

Changes by Éric Araujo :


--
components: +Distutils2
nosy: +eric.araujo
versions: +Python 3.2 -Python 2.6, Python 3.0

___
Python tracker 

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



[issue9437] test_distutils failure with -m32

2010-08-21 Thread Antoine Pitrou

Antoine Pitrou  added the comment:

It turns out, quite expectedly, that distutils doesn't reuse the various 
LDFLAGS recorded by sysconfig (why are there three of them?), but instead only 
uses LDSHARED:

>>> sysconfig.get_config_var('LDSHARED')
'gcc -pthread -shared'
>>> sysconfig.get_config_var('LDFLAGS')
'-m32 '
>>> sysconfig.get_config_var('PY_LDFLAGS')
'-m32'
>>> sysconfig.get_config_var('CONFIGURE_LDFLAGS')
'-m32'

I would suggest bumping this to critical or even release blocker, since 
building of extensions is broken when using non-default linker flags.

--
nosy: +eric.araujo

___
Python tracker 

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



[issue1635363] Add command line help to windows unistall binary

2010-08-21 Thread Martin v . Löwis

Martin v. Löwis  added the comment:

No, we should keep both. bdist_wininst provides which which bdist_msi cannot 
provide.

--
status: pending -> open

___
Python tracker 

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



[issue9437] test_distutils failure with -m32

2010-08-21 Thread Antoine Pitrou

Antoine Pitrou  added the comment:

Following patch works here. I've added XXX tags in strange places.

--
keywords: +patch
Added file: http://bugs.python.org/file18598/m32.patch

___
Python tracker 

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



[issue9023] distutils relative path errors

2010-08-21 Thread Greg Hazel

Greg Hazel  added the comment:

> Éric Araujo  added the comment:
>> I've changed my code to use os.path.abspath() while I wait for a
>> fix.
> Does this means that your code works with paths that go to the parent 
> directory? I don’t know if it’s right to allow that (I mean this literally: 
> I’m not the main maintainer and I don’t have much packaging experience).

Yes, my code works with the os.path.abspath() change, since it creates the 
entire absolute path directory structure inside the build directory. This is

--

___
Python tracker 

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



[issue9624] 2755

2010-08-21 Thread Jay Ballard

Jay Ballard  added the comment:

I'v got windows 7 and I need Python for Blender and clonk files but
when I install it, it comes up with a message that it can't find the
harddrive

--
status: pending -> open
Added file: http://bugs.python.org/file18599/unnamed

___
Python tracker 

___I'v got windows 7 and I need Python for Blender and clonk files but 
when I install it, it comes up with a message that it can't find the 
harddrive
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue9624] 2755

2010-08-21 Thread Éric Araujo

Changes by Éric Araujo :


Removed file: http://bugs.python.org/file18599/unnamed

___
Python tracker 

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



[issue9437] test_distutils failure with -m32

2010-08-21 Thread Antoine Pitrou

Antoine Pitrou  added the comment:

Ok, there is also a failure in test_sysconfig (the patch makes no difference):

==
FAIL: test_ldshared_value (test.test_sysconfig.TestSysConfig)
--
Traceback (most recent call last):
  File "/home/antoine/py3k/m32/Lib/test/test_sysconfig.py", line 285, in 
test_ldshared_value
self.assertIn(ldflags, ldshared)
AssertionError: '-m32 ' not found in 'gcc -pthread -shared'

--

___
Python tracker 

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



[issue1635363] Add command line help to windows unistall binary

2010-08-21 Thread Éric Araujo

Éric Araujo  added the comment:

Thanks for the reply. I’m reassigning to distutils2, since Thomas classified 
this as a feature request. Someone who wants this change can contribute a patch.

--
components: +Distutils2 -Distutils, Windows
versions: +Python 2.5, Python 2.6, Python 2.7, Python 3.1, Python 3.2

___
Python tracker 

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



[issue1635363] Add command line help to windows unistall binary

2010-08-21 Thread Éric Araujo

Changes by Éric Araujo :


--
components: +Windows

___
Python tracker 

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



[issue9437] test_distutils failure with -m32

2010-08-21 Thread Antoine Pitrou

Antoine Pitrou  added the comment:

It appears that 2.7 has the same issue, although fewer tests fail (apparently 
not all 3.2 tests have been backported).

--
versions: +Python 2.7

___
Python tracker 

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



[issue9437] can't build extensions with non-default ldflags (e.g. -m32)

2010-08-21 Thread Antoine Pitrou

Changes by Antoine Pitrou :


--
priority: high -> release blocker
title: test_distutils failure with -m32 -> can't build extensions with 
non-default ldflags (e.g. -m32)

___
Python tracker 

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



[issue9656] compiler module provides wrong AST for extended slice of length 1

2010-08-21 Thread Benjamin Peterson

Benjamin Peterson  added the comment:

The compiler module is deprecated and essentially unmaintained.

--
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



[issue9213] range purports to implement the Sequence ABC, but is missing index and count methods

2010-08-21 Thread Éric Araujo

Éric Araujo  added the comment:

I can’t comment on C code, but the tests look good to me.

--

___
Python tracker 

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



[issue3444] add warnings for intra-package imports

2010-08-21 Thread Éric Araujo

Changes by Éric Araujo :


--
resolution:  -> out of date
stage:  -> committed/rejected
status: open -> closed

___
Python tracker 

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



[issue1233785] getpass.getpass() performs differently on Windows vs *nix

2010-08-21 Thread Mark Lawrence

Mark Lawrence  added the comment:

Fixed in r59451.

--
nosy: +BreamoreBoy
resolution:  -> fixed
status: open -> closed
versions: +Python 3.2 -Python 2.7

___
Python tracker 

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



[issue1092365] Distutils needs a way *not* to install files

2010-08-21 Thread Éric Araujo

Changes by Éric Araujo :


--
dependencies: +add a resource+files section in setup.cfg

___
Python tracker 

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



[issue1092365] Distutils needs a way *not* to install files

2010-08-21 Thread Éric Araujo

Éric Araujo  added the comment:

Doesn’t --install-data /dev/null already work?

--
assignee:  -> tarek
components: +Distutils2 -Distutils
nosy: +eric.araujo

___
Python tracker 

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



[issue1234473] configure: error: cannot compute sizeof (int), 77

2010-08-21 Thread Mark Lawrence

Mark Lawrence  added the comment:

Can this be closed as I don't think a 5 year old build issue is still relevant?

--
nosy: +BreamoreBoy
status: open -> pending

___
Python tracker 

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



[issue9213] range purports to implement the Sequence ABC, but is missing index and count methods

2010-08-21 Thread Guido van Rossum

Changes by Guido van Rossum :


--
nosy:  -gvanrossum

___
Python tracker 

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



[issue7182] For non-debug builds, the cygwinccompiler.py should define NDEBUG

2010-08-21 Thread Éric Araujo

Éric Araujo  added the comment:

Would this change fix an important bug, or is it a feature request? Behavior 
changes that don’t fix bugs don’t go into distutils.

--
nosy: +eric.araujo

___
Python tracker 

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



[issue1943] improved allocation of PyUnicode objects

2010-08-21 Thread Guido van Rossum

Changes by Guido van Rossum :


--
assignee: gvanrossum -> 

___
Python tracker 

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



[issue1234674] filecmp.cmp's "shallow" option

2010-08-21 Thread Mark Lawrence

Changes by Mark Lawrence :


--
versions: +Python 2.7, Python 3.1, Python 3.2 -Python 2.6

___
Python tracker 

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



  1   2   3   >