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

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

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

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

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

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

[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

[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 ___ _

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

[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 ___ ___ Pytho

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

[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

[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

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

[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

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

[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 ___ _

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

[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

[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://m

[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

[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

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

[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 ___ ___ P

[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

[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 ___ ___ Py

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

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

[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

[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

[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

[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

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

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

[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

[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

[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

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

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

[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

[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

[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

[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

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

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

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

[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 ___ ___ P

[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 ___ ___ P

[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 !=

[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

[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#newco

[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', [Co

[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

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

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

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

[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, taki

[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

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

[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

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

[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 ___ Pyth

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

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

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

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

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

[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://m

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

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

[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.se

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

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

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

[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, ncog

[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 ___ Pyth

[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

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

[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

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

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

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

[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

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

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

[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, Pyt

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

[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

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

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

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

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

[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 ___ _

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

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

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

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

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

[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:/

[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

  1   2   3   >