[issue618023] imap handler in urllib(2)

2010-08-17 Thread Mark Lawrence
Mark Lawrence added the comment: Closing as no reply to msg81791. -- nosy: +BreamoreBoy status: open -> closed versions: +Python 3.2 -Python 2.7, Python 3.1 ___ Python tracker

[issue8063] Call _PyGILState_Init() earlier in Py_InitializeEx()

2010-08-17 Thread STINNER Victor
STINNER Victor added the comment: Commited as r84163 to 3.2. Don't backport because it is not really a bug and I prefer to avoid touching stable branches with such minor details. -- resolution: -> fixed status: open -> closed ___ Python tracker

[issue4835] SIZEOF_SOCKET_T not defined

2010-08-17 Thread Martin v . Löwis
Martin v. Löwis added the comment: Why is PyLong_FromSocket_t defined in a header file in the first place? The only caller is in socketmodule.c, and calling it elsewhere wouldn't work, anyway, since it relies on SOCKET_T being defined. So -1 on the patch. --

[issue626452] Support RFC 2111 in email package

2010-08-17 Thread Mark Lawrence
Changes by Mark Lawrence : -- versions: +Python 3.2 -Python 2.7 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue4835] SIZEOF_SOCKET_T not defined

2010-08-17 Thread Antoine Pitrou
Antoine Pitrou added the comment: > Why is PyLong_FromSocket_t defined in a header file in the first > place? The only caller is in socketmodule.c, and calling it elsewhere > wouldn't work, anyway, since it relies on SOCKET_T being defined. I agree, but it was already like that, and I didn't wa

[issue639266] Tkinter sliently discards all Tcl errors

2010-08-17 Thread Mark Lawrence
Mark Lawrence added the comment: @Guilherme I take it that you're still interested in this? -- nosy: +BreamoreBoy ___ Python tracker ___ ___

[issue644744] bdist_rpm fails when installing man pages

2010-08-17 Thread Mark Lawrence
Mark Lawrence added the comment: Anyone got a reply for msg107898? -- nosy: +BreamoreBoy versions: -Python 2.6 ___ Python tracker ___ _

[issue4835] SIZEOF_SOCKET_T not defined

2010-08-17 Thread Martin v . Löwis
Martin v. Löwis added the comment: > I agree, but it was already like that, and I didn't want to change it. This goes back to issue 1378. Christian, do you recall why you needed to add the helper macros to a header file? You said # Added PyLong_FromSocket_t and PyLong_AsSocket_t to longobject

[issue658749] asyncore connect() and winsock errors

2010-08-17 Thread Mark Lawrence
Changes by Mark Lawrence : -- stage: -> needs patch type: -> behavior versions: +Python 2.7, Python 3.1, Python 3.2 -Python 2.3 ___ Python tracker ___

[issue665194] datetime-RFC2822 roundtripping

2010-08-17 Thread Mark Lawrence
Changes by Mark Lawrence : -- versions: +Python 3.2 -Python 2.7 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue667770] import C API mess

2010-08-17 Thread Mark Lawrence
Changes by Mark Lawrence : -- stage: -> needs patch type: -> feature request versions: +Python 3.2 -Python 3.0 ___ Python tracker ___ _

[issue670664] HTMLParser.py - more robust SCRIPT tag parsing

2010-08-17 Thread Mark Lawrence
Changes by Mark Lawrence : -- versions: +Python 3.1 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mai

[issue672115] Assignment to __bases__ of direct object subclasses

2010-08-17 Thread Mark Lawrence
Changes by Mark Lawrence : -- stage: -> needs patch type: -> behavior versions: +Python 2.7, Python 3.1, Python 3.2 -Python 2.3 ___ Python tracker ___

[issue9630] Reencode filenames of all module and code objects when setting the filesystem encoding

2010-08-17 Thread STINNER Victor
New submission from STINNER Victor : Python 3 has a very important variable: the filesystem encoding, sys.getfilesystemencoding(). It is used to encode and decode filenames to access to the filesystem, to encode program arguments in subprocess, etc. The encoding is hardcoded to "mbcs" on Windo

[issue9425] Rewrite import machinery to work with unicode paths

2010-08-17 Thread STINNER Victor
STINNER Victor added the comment: r84168 creates PyModule_GetFilenameObject(). I created a separated issue for the patch reencoding all filenames when setting the filesystem encoding: #9630. -- ___ Python tracker

[issue504152] rfc822 long header continuation broken

2010-08-17 Thread Guido van Rossum
Changes by Guido van Rossum : -- nosy: -gvanrossum ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mai

[issue502236] Asynchronous exceptions between threads

2010-08-17 Thread Guido van Rossum
Changes by Guido van Rossum : -- nosy: -gvanrossum ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mai

[issue616013] cPickle documentation incomplete

2010-08-17 Thread Guido van Rossum
Changes by Guido van Rossum : -- nosy: -gvanrossum ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mai

[issue658749] asyncore connect() and winsock errors

2010-08-17 Thread Guido van Rossum
Changes by Guido van Rossum : -- nosy: -gvanrossum ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mai

[issue667770] import C API mess

2010-08-17 Thread Guido van Rossum
Changes by Guido van Rossum : -- nosy: -gvanrossum ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mai

[issue504152] rfc822 long header continuation broken

2010-08-17 Thread Kenneth Arnold
Changes by Kenneth Arnold : -- nosy: -kcarnold ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.py

[issue1210680] Split email headers near a space

2010-08-17 Thread David Stanek
Changes by David Stanek : -- nosy: +dstanek ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pytho

[issue7275] CoverageResult fails to merge input file with non-empty callers in trace.py (patch)

2010-08-17 Thread David Stanek
Changes by David Stanek : -- nosy: +dstanek ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.o

[issue8722] Documentation for __getattr__

2010-08-17 Thread David Stanek
Changes by David Stanek : -- nosy: +dstanek ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.o

[issue5843] Possible normalization error in urlparse.urlunparse

2010-08-17 Thread David Stanek
Changes by David Stanek : -- nosy: +dstanek ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.o

[issue7159] Urllib2 authentication memory.

2010-08-17 Thread David Stanek
Changes by David Stanek : -- nosy: +dstanek ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.o

[issue9417] Declaring a class creates circular references

2010-08-17 Thread David Stanek
Changes by David Stanek : -- nosy: +dstanek ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.o

[issue9630] Reencode filenames of all module and code objects when setting the filesystem encoding

2010-08-17 Thread STINNER Victor
STINNER Victor added the comment: While working on #8622, I realized that it's not enough: sys.path and sys.executable (and sys.meta_path) should also be reencoded. New patch does that. -- Added file: http://bugs.python.org/file18561/reencode_modules_path-2.patch

[issue9630] Reencode filenames of all module and code objects when setting the filesystem encoding

2010-08-17 Thread STINNER Victor
Changes by STINNER Victor : Removed file: http://bugs.python.org/file18560/reencode_modules_path.patch ___ Python tracker ___ ___ Python-bugs-l

[issue8622] Add PYTHONFSENCODING environment variable

2010-08-17 Thread STINNER Victor
STINNER Victor added the comment: Here you have a patch. It adds tests in test_sys. The tests are skipped on a non-ascii Python executable path because of #8611 (see #9425). -- keywords: +patch nosy: +pitrou Added file: http://bugs.python.org/file18562/pythonfsencoding.patch

[issue9630] Reencode filenames when setting the filesystem encoding

2010-08-17 Thread STINNER Victor
Changes by STINNER Victor : -- title: Reencode filenames of all module and code objects when setting the filesystem encoding -> Reencode filenames when setting the filesystem encoding ___ Python tracker ___

[issue616013] cPickle documentation incomplete

2010-08-17 Thread Georg Brandl
Changes by Georg Brandl : -- nosy: -georg.brandl ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.

[issue9516] sysconfig: $MACOSX_DEPLOYMENT_TARGET mismatch: now "10.3" but "10.5" during configure

2010-08-17 Thread Ronald Oussoren
Ronald Oussoren added the comment: I now understand why my script fails, and it is caused by this issue. The sysconfig.py code has another major issue: the use of os.putenv. This changes the environment, without changing os.environ. The use of os.putenv should be replaced by setting keys in o

[issue9631] Python 2.7 installation issue for Linux Red Hat 4.1

2010-08-17 Thread Prakash Palanivel
New submission from Prakash Palanivel : Server on Linux:gcc version 4.1.0 20060304 (Red Hat 4.1.0-3) Which "sunaudiodev" library i need to install on linux. Kindly help me how to install or configure or avoid this issue. Error: Python build finished, but the necessary bits to build these module

[issue9631] Python 2.7 installation issue for Linux Red Hat 4.1

2010-08-17 Thread Prakash Palanivel
Changes by Prakash Palanivel : -- type: -> compile error ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http:/

[issue9631] Python 2.7 installation issue for Linux Red Hat 4.1

2010-08-17 Thread Martin v . Löwis
Martin v. Löwis added the comment: You are misinterpreting what you are seeing. The message you get is not an error message. It works all fine, and correctly. To build the sunaudiodev module, you need Sun/Oracle Solaris, not Linux. -- nosy: +loewis resolution: -> invalid status: open

[issue9598] untabify.py fails on files that contain non-ascii characters

2010-08-17 Thread Popa Claudiu
Popa Claudiu added the comment: Hello. As it seems, untabify.py opens the file using the builtin function open, making the call error-prone when encountering non-ascii character. The proper handling should be done by using open from codecs library, specifying the encoding as argument. e.g. co

[issue9631] Python 2.7 installation issue for Linux Red Hat 4.1

2010-08-17 Thread Prakash Palanivel
Prakash Palanivel added the comment: After complete the installation the below error message was displayed.Kindly check and revert. ./python -E ./setup.py install \ --prefix=/usr/local/python-2.7 \ --install-scripts=/usr/local/python-2.7/bin \ --install-platlib=/usr/loca

[issue5215] change value of local variable in debug

2010-08-17 Thread Markus Pröller
Markus Pröller added the comment: Hello, I changed pdb.py to the file I added in the attachment (I just used the given patch pdb_cache_f_locals.patch) Then I created the following file: import pdb def function_1(number): stack_1 = number function_2(stack_1) def function_2(numbe

[issue5215] change value of local variable in debug

2010-08-17 Thread Amaury Forgeot d'Arc
Amaury Forgeot d'Arc added the comment: Ah, the patch is buggy; it was corrected with r71019 which indeed fixes "up" and "down". You could try to apply this change to your local copy. Also consider upgrading to 2.7, where everything works as expected... -- ___

[issue9631] Python 2.7 installation issue for Linux Red Hat 4.1

2010-08-17 Thread Martin v . Löwis
Martin v. Löwis added the comment: What file system is this on? -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscrib

<    1   2