[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

[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

[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

[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

[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

[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

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

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

[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

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

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

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

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

[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

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

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

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

[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

[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

[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
Changes by Felix Schwarz : -- keywords: +patch Added file: http://bugs.python.org/file13100/helo.patch ___ Python tracker ___ ___ Pytho

[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

[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

[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

[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

[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

[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

[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

[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

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

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

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

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

[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

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

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

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

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

[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

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

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

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

[issue5275] BaseCookie.load doesn't create Morsel objects for mappings

2009-02-15 Thread Mark Florisson
New submission from Mark Florisson : The load method, which is also called from the initializer if input is provided, doesn't create Morsel objects for things other than strs, because it calls self.update(rawdata), which does not invoke the custom __setitem__. The documentation states that when

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

2009-02-15 Thread Mitchell Model
Mitchell Model added the comment: >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 sour

[issue1682942] ConfigParser support for alt delimiters

2009-02-15 Thread Daniel Diniz
Changes by Daniel Diniz : -- stage: -> patch review type: -> feature request versions: +Python 2.7 ___ Python tracker ___ ___ Pyth

[issue1165404] ConfigParser alternative key-value delimitier

2009-02-15 Thread Daniel Diniz
Daniel Diniz added the comment: Closing as #1682942 has a better patch (a link to this one is automagically added). -- components: +Library (Lib) -None nosy: +ajaksu2 superseder: -> ConfigParser support for alt delimiters type: -> feature request versions: +Python 2.7 ___

[issue1169108] PySys_WriteStderr() -> WaitForSingleObject() hangs system

2009-02-15 Thread Daniel Diniz
Daniel Diniz added the comment: Unless someone can reproduce this in a recent CPython build, I'll close this one soon. -- nosy: +ajaksu2 priority: normal -> low type: -> behavior versions: +3rd party -Python 2.4 ___ Python tracker

[issue1172711] long long support for array module

2009-02-15 Thread Daniel Diniz
Changes by Daniel Diniz : -- components: +Extension Modules -Library (Lib) stage: -> test needed type: -> feature request versions: +Python 2.7 -Python 2.5 ___ Python tracker ___

[issue1169633] Install fail code 2932 after fail to copy python_icon.exe

2009-02-15 Thread Daniel Diniz
Daniel Diniz added the comment: Will close soon for lack of response for OP unless someone wants to adopt it. -- nosy: +ajaksu2 priority: normal -> low stage: -> test needed type: -> behavior ___ Python tracker

[issue1159425] 2.4 crashes when try to exit app and mulitple threads active

2009-02-15 Thread Daniel Diniz
Daniel Diniz added the comment: A sample script that reproduces this behavior in 2.6 is needed if this one is to have a chance of being fixed. -- nosy: +ajaksu2 stage: -> test needed type: -> crash versions: +Python 2.6 -Python 2.4 ___ Python track

[issue1159139] cgi.py invalid REQUEST_METHOD set

2009-02-15 Thread Daniel Diniz
Daniel Diniz added the comment: Confirmed in trunk. -- keywords: +easy nosy: +ajaksu2 stage: -> test needed type: -> behavior versions: +Python 2.6 -Python 2.4 ___ Python tracker __

[issue1159051] Handle corrupted gzip files with unexpected EOF

2009-02-15 Thread Daniel Diniz
Daniel Diniz added the comment: Confirmed on trunk with test_gzip_error.py: struct.error: unpack requires a string argument of length 4 -- nosy: +ajaksu2 ___ Python tracker _

[issue5276] IDLE startup file .Idle.py not documented

2009-02-15 Thread Mitchell Model
New submission from Mitchell Model : The following behavior should be documented but it is not: If the user has a .Idle.py file IDLE will run it when it starts up. This is independent of running IDLESTARTUP or PYTHONSTARTUP when the -s switch is given. It is run by Tk.readprofile as called fro

[issue1158231] string.Template does not allow step-by-step replacements

2009-02-15 Thread Daniel Diniz
Changes by Daniel Diniz : -- stage: -> test needed versions: +Python 2.7 ___ Python tracker ___ ___ Python-bugs-list mailing list U

[issue1144263] reload() is broken for C extension objects

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

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

2009-02-15 Thread Daniel Diniz
Changes by Daniel Diniz : -- components: +Extension Modules type: -> feature request versions: +Python 3.1 -Python 2.3 ___ Python tracker ___ _

[issue1152248] Enhance file.readlines by making line separator selectable

2009-02-15 Thread Daniel Diniz
Changes by Daniel Diniz : -- stage: -> test needed versions: +Python 3.1 -Python 3.0 ___ Python tracker ___ ___ Python-bugs-list ma

[issue1149798] hotshot.runctx: builtins missing

2009-02-15 Thread Daniel Diniz
Changes by Daniel Diniz : -- keywords: +patch stage: -> patch review type: -> feature request versions: +Python 2.7 -Python 2.3 ___ Python tracker ___ ___

[issue5243] Missing dependency in distutils build

2009-02-15 Thread Patrick Gerken
Patrick Gerken added the comment: The attached test works breaks without the patch and passes with the patch. I am not sure whether the test itself is written following best practice. I would be more than happy for a review, with hints what should be done better. Added file: http://bugs.python

[issue1156499] __getattr__ and __setattr__ methods for modules

2009-02-15 Thread Daniel Diniz
Changes by Daniel Diniz : -- stage: -> test needed versions: +Python 2.7, Python 3.1 ___ Python tracker ___ ___ Python-bugs-list ma

[issue1155362] Bugs in parsedate_tz

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

[issue1154351] add get_current_dir_name() to os module

2009-02-15 Thread Daniel Diniz
Changes by Daniel Diniz : -- stage: -> test needed versions: +Python 2.7, Python 3.1 ___ Python tracker ___ ___ Python-bugs-list ma

[issue1153622] eval does not bind variables in lambda bodies correctly

2009-02-15 Thread Daniel Diniz
Changes by Daniel Diniz : -- type: -> feature request versions: +Python 2.7 -Python 2.4 ___ Python tracker ___ ___ Python-bugs-list

[issue1152248] Enhance file.readlines by making line separator selectable

2009-02-15 Thread Nick Coghlan
Nick Coghlan added the comment: Any further work on this should wait until the io-in-c branch has landed (or at least be based on that branch). -- stage: test needed -> needs patch ___ Python tracker ___

[issue5243] Missing dependency in distutils build

2009-02-15 Thread Tarek Ziadé
Tarek Ziadé added the comment: The patch looks good. Minor tweaks : - sys.path should be set to its initial state after the test (setUp/tearDown might be helpfull here) - ensure_finalized() should be called right before run() so it acts like the real call _

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

2009-02-15 Thread Mitchell Model
Mitchell Model added the comment: >Martin v. Löwis added the comment: > >How precisely did you build? Can you check whether any build step >removed PythonLauncher, then recreated it? in the svn directory for, say, py3k % svn update % make clean % ./configure --enable-frameworks % make % sudo

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

2009-02-15 Thread Mitchell Model
Mitchell Model added the comment: Sorry -- msg 82178 refers to "my previous message" but I sent them out of order. The "previous message" was 82190, just below 82178. ___ Python tracker

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

2009-02-15 Thread Eric Smith
Eric Smith added the comment: With this patch, I changed it to "format code", and made it more in line with Antoine's original suggested message. I'm okay with "format code" or "formatting code", but if we do use either of those wordings, we should change the documentation to match. Not sure if

[issue1259434] Tix CheckList 'radio' option cannot be changed

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

[issue1252236] Simplying Tkinter's event loop

2009-02-15 Thread Daniel Diniz
Changes by Daniel Diniz : -- stage: -> test needed type: -> feature request versions: +Python 2.7 -Python 2.5 ___ Python tracker ___ _

[issue1265100] sequence slicing documentation incomplete

2009-02-15 Thread Daniel Diniz
Daniel Diniz added the comment: Is this a won't fix, then? -- nosy: +ajaksu2 type: -> feature request versions: +Python 2.7 -Python 2.4 ___ Python tracker ___ ___

[issue1248119] pdb 'next' does not skip list comprehension

2009-02-15 Thread Daniel Diniz
Daniel Diniz added the comment: Will close this one as fixed by issue 1267629, unless someone voices disagreement. -- nosy: +ajaksu2 superseder: -> pdb: implement "until",fix for 1248119 ___ Python tracker

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

2009-02-15 Thread Daniel Diniz
Changes by Daniel Diniz : -- stage: -> test needed type: -> behavior ___ Python tracker ___ ___ Python-bugs-list mailing list Unsu

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

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

[issue1278102] help() broken, especially on Windows

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

[issue1282647] socket.getaddrinfo() bug for IPv6 enabled platforms

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

[issue1251026] cgitb gives wrong lineno inside try:..finally:

2009-02-15 Thread Daniel Diniz
Daniel Diniz added the comment: Cannot reproduce, trunk as of rev69550 displays the error highlighted in the correct line. -- nosy: +ajaksu2 stage: -> test needed type: -> behavior versions: +Python 2.6 ___ Python tracker

[issue1252001] Issue with telnetlib read_until not timing out

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

[issue1251921] Fail codecs.lookup() on 'mbcs' and 'tactis'

2009-02-15 Thread Daniel Diniz
Daniel Diniz added the comment: The 'tactis' codec is still missing, but it's not mentioned in docs either: http://docs.python.org/dev/library/codecs.html#id3 I'll close this one soon unless someone voices disagreement. -- components: +Documentation nosy: +ajaksu2 type: -> feature req

[issue1214879] Support non-file source/dest in marshal

2009-02-15 Thread Daniel Diniz
Changes by Daniel Diniz : -- stage: -> patch review type: -> feature request versions: +Python 2.7 -Python 2.5 ___ Python tracker ___

[issue1254125] Python interpreter unnecessarily linked against c++ runtime

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

[issue1249749] Encodings and aliases do not match runtime

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

[issue1256786] slice object uses -1 as exclusive end-bound

2009-02-15 Thread Daniel Diniz
Daniel Diniz added the comment: Closing suggested. FWIW, Micheal's reply is at http://mail.python.org/pipermail/python-list/2005-August/335846.html -- nosy: +ajaksu2 stage: -> test needed type: -> behavior versions: +Python 2.6 -Python 2.4 ___ Pyth

[issue4609] Allow use of > 256 FD's on solaris in 32 bit mode

2009-02-15 Thread John Levon
Changes by John Levon : -- nosy: +movement ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.or

[issue3928] os.mknod missing on Solaris

2009-02-15 Thread John Levon
Changes by John Levon : -- nosy: +movement ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.or

[issue3265] Python-2.5.2/Modules/_ctypes/malloc_closure.c:70: error: `MAP_ANONYMOUS' undeclared

2009-02-15 Thread John Levon
Changes by John Levon : -- nosy: +movement ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.or

[issue1119673] ScrolledText allows Frame.bbox to hide Text.bbox

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

[issue1122916] incorrect handle of declaration in markupbase

2009-02-15 Thread Daniel Diniz
Changes by Daniel Diniz : -- stage: -> test needed title: incorrect handle of declaration in markupbase -> incorrect handle of declaration in markupbase type: -> behavior versions: +Python 2.6 -Python 2.4 ___ Python tracker

[issue1147646] Windows deadlock with PyEval_ReleaseLock

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

[issue1144533] htmllib quote parse error within a

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

[issue1162477] Parsing failures in parsedate_tz

2009-02-15 Thread Daniel Diniz
Changes by Daniel Diniz : -- stage: -> test needed type: -> feature request versions: +Python 2.7 -Python 2.3 ___ Python tracker ___ _

[issue1186900] nntplib shouldn't raise generic EOFError

2009-02-15 Thread Daniel Diniz
Changes by Daniel Diniz : -- stage: -> test needed versions: +Python 2.7 ___ Python tracker ___ ___ Python-bugs-list mailing list U

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

2009-02-15 Thread Daniel Diniz
Changes by Daniel Diniz : -- stage: -> test needed type: -> feature request versions: +Python 2.7 ___ Python tracker ___ ___ Pytho

[issue1195571] simple callback system for Py_FatalError

2009-02-15 Thread Daniel Diniz
Changes by Daniel Diniz : -- nosy: +haypo stage: -> test needed title: simple callback system for Py_FatalError -> simple callback system for Py_FatalError type: -> feature request versions: +Python 2.7 -Python 2.4 ___ Python tracker

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

2009-02-15 Thread Daniel Diniz
Daniel Diniz added the comment: IIUC, Ian's link has a doctest for this feature. -- nosy: +ajaksu2 stage: -> needs patch versions: +Python 2.7 ___ Python tracker ___

[issue1200313] HTMLParser fails to handle charref in attribute value

2009-02-15 Thread Daniel Diniz
Daniel Diniz added the comment: Maybe the charrefs were lost in the SF -> Roundup transition? -- nosy: +ajaksu2 stage: -> test needed type: -> feature request versions: +Python 2.7 ___ Python tracker _

[issue1210680] Split email headers near a space

2009-02-15 Thread Daniel Diniz
Changes by Daniel Diniz : -- stage: -> test needed type: -> feature request versions: +Python 2.7 ___ Python tracker ___ ___ Pytho

  1   2   >