[issue1076790] test test_codecs failed

2009-02-15 Thread Daniel Diniz
Changes by Daniel Diniz : -- components: +Extension Modules, Unicode -Library (Lib) stage: -> test needed type: -> behavior versions: +Python 2.6 -Python 2.4 ___ Python tracker _

[issue1078245] Python2.4: building '_socket' extension fails with `INET_ADD

2009-02-15 Thread Daniel Diniz
Changes by Daniel Diniz : -- stage: -> test needed type: -> behavior versions: +Python 2.6 -Python 2.4 ___ Python tracker ___ ___

[issue1111130] tkSimpleDialog broken on MacOS X (Aqua Tk)

2009-02-15 Thread Daniel Diniz
Changes by Daniel Diniz : -- stage: -> test needed type: -> behavior versions: +Python 2.6 -Python 2.4 ___ Python tracker ___ ___

[issue1111100] csv reader barfs encountering quote when quote_none is set

2009-02-15 Thread Daniel Diniz
Daniel Diniz added the comment: Cannot reproduce (snippet gives correct output). As many newline handling changes went into csv, I will close unless someone can reproduce the bug. -- nosy: +ajaksu2 type: -> behavior ___ Python tracker

[issue1113244] Please add do-while guard to Py_DECREF etc.

2009-02-15 Thread Daniel Diniz
Changes by Daniel Diniz : -- priority: normal -> low type: -> feature request versions: +Python 2.7, Python 3.1 -Python 2.4 ___ Python tracker ___

[issue1116520] Prefix search is filesystem-centric

2009-02-15 Thread Daniel Diniz
Changes by Daniel Diniz : -- nosy: +brett.cannon stage: -> test needed type: -> feature request versions: +Python 2.7, Python 3.1 ___ Python tracker ___ _

[issue5247] Unhelpful error message with str.format()

2009-02-15 Thread Antoine Pitrou
Antoine Pitrou added the comment: > Any suggestions for clearer wording? Use "formatting code" rather than "presentation type"? ___ Python tracker ___ ___

[issue5247] Unhelpful error message with str.format()

2009-02-15 Thread Eric Smith
Eric Smith added the comment: The attached patch (against trunk) changes the message. However, it has at least one unintended consequence. If you have an object with no __format__, it gets converted to a string, which is then formatted. So you get: >>> '{0:^10}'.format(0j) '0j' >>> '{0

[issue1075356] exceeding obscure weakproxy bug

2009-02-15 Thread Daniel Diniz
Daniel Diniz added the comment: Confirmed with rev69546. -- nosy: +ajaksu2 stage: -> test needed type: -> behavior versions: +Python 2.6 -Python 2.4 ___ Python tracker ___ _

[issue5247] Unhelpful error message with str.format()

2009-02-15 Thread Eric Smith
Eric Smith added the comment: I've gone back and read PEP 3101. To use its terminology, I think the error message should be something like: Unknown presentation type %c for type %s. I'm not sure where I got the original wording "conversion type". It's true that it's sometimes used for type conv

[issue1700507] Carbon.Scrap.PutScrapFlavor

2009-02-15 Thread Daniel Diniz
Changes by Daniel Diniz : -- stage: -> test needed type: -> behavior versions: +Python 2.6 ___ Python tracker ___ ___ Python-bugs-

[issue1254695] QuickTime API needs corrected object types

2009-02-15 Thread Daniel Diniz
Changes by Daniel Diniz : -- stage: -> test needed type: -> behavior versions: +Python 2.6 -Python 2.4, Python 2.5 ___ Python tracker ___

[issue1123727] gensuitemodule.processfile fails

2009-02-15 Thread Daniel Diniz
Changes by Daniel Diniz : -- stage: -> test needed type: -> behavior versions: +Python 2.6 -Python 2.4 ___ Python tracker ___ ___

[issue1384175] random module - Provider DLL failed to initialize correctly

2009-02-15 Thread Silas S. Brown
Silas S. Brown added the comment: After further investigation I'm suspecting that this issue is actually due to the process running out of RAM. ___ Python tracker ___ _

[issue4142] smtplib doesn't clear helo/ehlo flags on quit

2009-02-15 Thread Martin v. Löwis
Martin v. Löwis added the comment: IIUC, the bug only occurs if you use the same SMTP object for multiple connections. I would claim that this is a bug in the application: SMTP objects are not designed to be used for multiple connections. You need to create a new one for each connection. If you

[issue5273] 3.0.1 crashes in unicode path

2009-02-15 Thread Hirokazu Yamamoto
Changes by Hirokazu Yamamoto : Removed file: http://bugs.python.org/file13098/fix_import.patch ___ Python tracker ___ ___ Python-bugs-list mail

[issue5273] 3.0.1 crashes in unicode path

2009-02-15 Thread Hirokazu Yamamoto
Hirokazu Yamamoto added the comment: >Should PyUnicode_CompareWithASCIIString() be replaced with something >else as well? I hope revised patch will fix this too. There seems to be no function to compare unicode object and file system encoded string, so I moved unicode creation before comparatio

[issue1533164] Installed but not listed *.pyo break bdist_rpm

2009-02-15 Thread Tarek Ziadé
Tarek Ziadé added the comment: > Perhaps the patch could be accepted in distutils so that bdist_rpm > always runs setup with -O1? Or some other change that could make > it easy to configure/customize distutils to match the platforms > needs ... We could have a new parameter for bdist_rpm for

[issue1533164] Installed but not listed *.pyo break bdist_rpm

2009-02-15 Thread Mads Kiilerich
Mads Kiilerich added the comment: Note that: This bug now is tracked in Fedora as https://bugzilla.redhat.com/show_bug.cgi?id=236535 The root of the problem on Fedora is that SElinux will give noisy warnings if python tries to to access or create non-existing foo.pyo for a packaged foo.py. Fed

[issue1384175] random module - Provider DLL failed to initialize correctly

2009-02-15 Thread Silas S. Brown
Silas S. Brown added the comment: I got a very similar error on an Otek Pocket PC running Windows Mobile 2003 SE and the latest version of pythonce from pythonce.sourceforge.net. The error is: File "C:\devl\release\PythonCE-2.5-20061219\Python-2.5-wince\Lib\random.py", line 108, in seed : [Err

[issue5273] 3.0.1 crashes in unicode path

2009-02-15 Thread Hirokazu Yamamoto
Hirokazu Yamamoto added the comment: I tracked down, and I found this mbcs path is set in Python/import.c(1394) find_module. if (PyUnicode_Check(v)) { v = PyUnicode_AsEncodedString(v, Py_FileSystemDefaultEncoding, NULL); if (v == NUL

[issue4142] smtplib doesn't clear helo/ehlo flags on quit

2009-02-15 Thread Felix Schwarz
Changes by Felix Schwarz : -- versions: +Python 2.5, Python 2.6, Python 2.7, Python 3.0 ___ Python tracker ___ ___ Python-bugs-list mai

[issue4142] smtplib doesn't clear helo/ehlo flags on quit

2009-02-15 Thread Felix Schwarz
Changes by Felix Schwarz : -- keywords: +patch Added file: http://bugs.python.org/file13100/helo.patch ___ Python tracker ___ ___ Pytho

[issue5273] 3.0.1 crashes in unicode path

2009-02-15 Thread Hirokazu Yamamoto
Hirokazu Yamamoto added the comment: I'm not sure. Even my patch might not be correct anyway. On my VC6 Debugger, update_compiled_module(PyCodeObject *co, char *pathname) pathname is surely mbcs. But its caller load_source_module is calling if (fstat(fileno(fp), &st) != 0) {

[issue4142] smtplib doesn't clear helo/ehlo flags on quit

2009-02-15 Thread Felix Schwarz
Felix Schwarz added the comment: I can confirm that this issue is still present in Python 2.5.2, 2.6.1 and 3.0.1. The current behavior of smtplib is a clear violation of the SMTP specification. The problem can be reproduced with code like that (stub, pseudo code-like): smtp = smtplib.SMTP() smt

[issue5188] telnetlib process_rawq buffer handling is confused

2009-02-15 Thread David Christian
Changes by David Christian : Added file: http://bugs.python.org/file13099/telnetlib.patch ___ Python tracker ___ ___ Python-bugs-list mailing l

[issue5188] telnetlib process_rawq buffer handling is confused

2009-02-15 Thread David Christian
David Christian added the comment: True. It turns out that there are other uses of a bytes string when a byte is required in that same routine. I've patched up those as well. Looks what we really need is a test of this function. I'll work on that as well. ___

[issue3760] PEP 3121 --- PyType_Copy is missing

2009-02-15 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- nosy: +benjamin.peterson, pitrou ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue1533164] Installed but not listed *.pyo break bdist_rpm

2009-02-15 Thread Tarek Ziadé
Tarek Ziadé added the comment: ok then: I am creating a Fedora 5 VM. It'll be useful in any case in the future to follow bdist_rpm issues. ___ Python tracker ___ _

[issue1533164] Installed but not listed *.pyo break bdist_rpm

2009-02-15 Thread Antoine Pitrou
Antoine Pitrou added the comment: Tarek, the issue can only be reproduced on Redhat/Fedora-like systems (I have a Mandriva here and therefore can't check). But it's likely that the issue still exists. -- nosy: +kiilerix ___ Python tracker

[issue5273] 3.0.1 crashes in unicode path

2009-02-15 Thread Antoine Pitrou
Antoine Pitrou added the comment: Gasp. Sorry for the bug. Should PyUnicode_CompareWithASCIIString() be replaced with something else as well? -- nosy: +pitrou ___ Python tracker

[issue5273] 3.0.1 crashes in unicode path

2009-02-15 Thread Hirokazu Yamamoto
Hirokazu Yamamoto added the comment: Here is a patch. -- components: +Interpreter Core, Unicode keywords: +patch versions: +Python 3.1 Added file: http://bugs.python.org/file13098/fix_import.patch ___ Python tracker

[issue5273] 3.0.1 crashes in unicode path

2009-02-15 Thread Hirokazu Yamamoto
Hirokazu Yamamoto added the comment: Quick observation. This bug was introduces in r68363. import.c(994) newname = PyUnicode_FromString(pathname); pathname is mbcs on windows, but PyUnicode_FromString assumes it as UTF8. -- nosy: +ocean-city __

[issue1533164] Installed but not listed *.pyo break bdist_rpm

2009-02-15 Thread Tarek Ziadé
Tarek Ziadé added the comment: I couldn't reproduce the problem under Python 2.5, 2.6 and current trunk. I am not sure I have the same conditions though, because I use a standalone RPM version under mac os x (see http://rpm5.org/files/rpm/rpm-5.0/BINARY/) Could you try to reproduce it under t

[issue5273] 3.0.1 crashes in unicode path

2009-02-15 Thread Musashi Tamura
New submission from Musashi Tamura : In unicode path Python 3.0.1 crashes when importing compiled module. This does not happen on Python 3.0, new in 3.0.1. Detailed Situation: OS: win2000 current pathname contains Japanese characters. ./a.py contains only a statement "import b". ./b.py is empty.

[issue5260] longobject.c: minor fixes, cleanups and optimizations

2009-02-15 Thread Mark Dickinson
Mark Dickinson added the comment: Thanks, Antoine and Gregory! Committed, r69634 and r69635. -- resolution: -> accepted status: open -> closed ___ Python tracker ___ __

[issue5261] with lock fails on multiprocessing

2009-02-15 Thread Tim Golden
Changes by Tim Golden : -- type: -> crash ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.or

[issue870479] Scripts need platform-dependent handling

2009-02-15 Thread Tarek Ziadé
Tarek Ziadé added the comment: > I assume it generates a shell script with no extension on Unix? Yes ___ Python tracker ___ ___ Python-bugs-

[issue870479] Scripts need platform-dependent handling

2009-02-15 Thread Tarek Ziadé
Tarek Ziadé added the comment: more discussion here : http://mail.python.org/pipermail/distutils-sig/2009-February/010980.html ___ Python tracker ___ ___

[issue5267] Subversion problem with PythonLauncher after building 3.0 or 3.1 on Mac

2009-02-15 Thread Ned Deily
Ned Deily added the comment: There are various steps in the Mac build process where the files are copied from the build source to the build destination and then .svn directories (among other things) are removed. Perhaps you tried building using the source directory as the destination directo

[issue5272] OS X installer: fix makefile target changed for 3.x

2009-02-15 Thread Ned Deily
New submission from Ned Deily : 2.x "make install" is equivalent to 3.x "make fullinstall" Update Mac/BuildScript/build-installer.py accordingly. This prevents spurious warning messages in the installer build. -- components: Build, Macintosh files: patch-nad0003-py3k-30.txt messages: 821

[issue5271] OS X installer: build can fail on import checks

2009-02-15 Thread Ned Deily
New submission from Ned Deily : ANALYSIS The OS X installer build include several third-party libraries which will be installed as shared libs in the framework. During the build, setup.py tries to import built extensions to catch import problems. Currently, the import

[issue5270] OS X installer: faulty Python.app bundle inside of framework

2009-02-15 Thread Ned Deily
New submission from Ned Deily : The Finder shows no version number and displays a generic icon. ANALYSISPrevious changes to Mac/Makefile removed configure processing which used to edit Info.plist.in into Info.plist. SOLUTIONAdd tailoring to Mac/Makefile. APPLIES py3k, 3

[issue5269] OS X Installer: add options to specify universal build type and deployment target

2009-02-15 Thread Ned Deily
New submission from Ned Deily : The current OS X installer builder has no provision for changing the architecture type or deployment target to allow different installer types, such as 4-way universal, to be built. The attached patch allows for builds on systems other than 10.4 and adds two new a

[issue5267] Subversion problem with PythonLauncher after building 3.0 or 3.1 on Mac

2009-02-15 Thread Martin v. Löwis
Martin v. Löwis added the comment: How precisely did you build? Can you check whether any build step removed PythonLauncher, then recreated it? If you remove Python Launcher.app, you should be able to svn update. -- nosy: +loewis ___ Python tracker

<    1   2