[issue4623] IDLE shutdown if I run an edited file contains chinese

2008-12-10 Thread bianpeng
New submission from bianpeng [EMAIL PROTECTED]: I use IDLE edit an script, if the script contains chinese, IDLE crashed if run the script. I put chinese character in commoent or string, and both get the same result. -- components: IDLE files: test.py messages: 77583 nosy: bianpeng

[issue4259] Update pydoc URLs

2008-12-10 Thread A.M. Kuchling
A.M. Kuchling [EMAIL PROTECTED] added the comment: Committed to 2.5 in rev. 67693. Do I need to 'svnmerge block' this revision to prevent future merges from attempting to apply it to trunk? -- status: open - closed ___ Python tracker [EMAIL

[issue4624] Can not import readline on python3.0 (ubuntu 8.04)

2008-12-10 Thread X Xiao
New submission from X Xiao [EMAIL PROTECTED]: I can import readline just fine on AMD64 ubuntu 8.04 under python3.0, however on 32-bit ubuntu 8.04 I could not import readline for python3.0. It says import readline ImportError: No module named readline. I made sure both ubuntu machines have

[issue4624] Can not import readline on python3.0 (ubuntu 8.04)

2008-12-10 Thread Benjamin Peterson
Benjamin Peterson [EMAIL PROTECTED] added the comment: Did you build Python yourself? If so, can you paste the last lines of the build process like this: Failed to find the necessary bits to build these modules: bsddb185 gdbm linuxaudiodev ossaudiodevspwd

[issue4624] Can not import readline on python3.0 (ubuntu 8.04)

2008-12-10 Thread X Xiao
X Xiao [EMAIL PROTECTED] added the comment: I just rebuild it again, it went away. not sure what I did wrong at first try. The last few lines during compilation are: INFO: Can't locate Tcl/Tk libs and/or headers Failed to find the necessary bits to build these modules: _dbm

[issue4624] Can not import readline on python3.0 (ubuntu 8.04)

2008-12-10 Thread Benjamin Peterson
Changes by Benjamin Peterson [EMAIL PROTECTED]: -- resolution: - invalid status: open - closed ___ Python tracker [EMAIL PROTECTED] http://bugs.python.org/issue4624 ___

[issue4625] IDLE won't open anymore, .idlerc unaccessible

2008-12-10 Thread Sophia K. Cheng
New submission from Sophia K. Cheng [EMAIL PROTECTED]: Hello, I was able to run IDLE once or twice on my laptop. Then I downloaded kiki and tried to run it but had forgotten to install wxPython. After that, IDLE no longer opens although the command prompt does still work. I get the following

[issue3999] Real segmentation fault handler

2008-12-10 Thread Skip Montanaro
Changes by Skip Montanaro [EMAIL PROTECTED]: -- nosy: +skip.montanaro ___ Python tracker [EMAIL PROTECTED] http://bugs.python.org/issue3999 ___ ___ Python-bugs-list

[issue4084] Decimal.max(NaN, x) gives incorrect results when x is finite and long

2008-12-10 Thread Facundo Batista
Facundo Batista [EMAIL PROTECTED] added the comment: Commited in trunk and Py3, thanks Mark! Please, could you commit it in 2.5? The only change I've made in the patch is adding the issue number to Misc/NEWS, the rest is ok. After that, just close this. Thanks again! -- versions:

[issue4626] compile() doesn't ignore the source encoding when a string is passed in

2008-12-10 Thread Brett Cannon
New submission from Brett Cannon [EMAIL PROTECTED]: When compile() is called with a string it is a reasonable assumption that it has already been decoded. But this is not in fact the case and leads to errors when trying to use non-ASCII identifiers:: source = # coding=latin-1\n\u00c6 =

[issue4627] Add Mac OS X Disk Images to Python.org homepage

2008-12-10 Thread Carl Johnson
New submission from Carl Johnson [EMAIL PROTECTED]: As recently as Python 2.6.0's release, Python.org had a link to download a disk image with a special newb-friendly installer for OS X. See http://www.python.org/download/releases/2.6/ Now, it's gone in Python 2.6.1, and it was never there

[issue4597] EvalFrameEx fails to set 'why' for some exceptions

2008-12-10 Thread Jeffrey Yasskin
Jeffrey Yasskin [EMAIL PROTECTED] added the comment: Added NEWS in r67685; ported to 2.5 branch in r67687; to 2.6 branch in r67696; to 3.1 branch in r67697; and to 3.0 branch in r67698. -- status: open - closed ___ Python tracker [EMAIL PROTECTED]

[issue4084] Decimal.max(NaN, x) gives incorrect results when x is finite and long

2008-12-10 Thread Martin v. Löwis
Martin v. Löwis [EMAIL PROTECTED] added the comment: Mark, if you want to backport this, please go ahead. If want me to, assign to me. -- assignee: facundobatista - marketdickinson priority: normal - release blocker ___ Python tracker [EMAIL

[issue4627] Add Mac OS X Disk Images to Python.org homepage

2008-12-10 Thread Martin v. Löwis
Martin v. Löwis [EMAIL PROTECTED] added the comment: Unfortunately, nobody is in charge of making disk images (this is a volunteer project entirely), so none might get made. -- nosy: +loewis ___ Python tracker [EMAIL PROTECTED]

[issue4628] No universal newline support for compile() when using bytes

2008-12-10 Thread Brett Cannon
New submission from Brett Cannon [EMAIL PROTECTED]: Passing in bytes to compile() works well for letting the parser handle the decoding of a file when an encoding is specified, but it doesn't take care of universal newlines:: source = b'a = 1\r\nb = 2\r\n' compile(source, 'test', 'exec')

[issue4629] getopt should not accept no_argument that ends with '='

2008-12-10 Thread Wang Chun
New submission from Wang Chun [EMAIL PROTECTED]: Consider the following program tmp.py: import sys, getopt print(getopt.getopt(sys.argv[1:], '', ['help'])) The program accept --help without a value: python helloworld.py --help But if someone invoke the program like: python helloworld.py

[issue4629] getopt should not accept no_argument that ends with '='

2008-12-10 Thread Wang Chun
Changes by Wang Chun [EMAIL PROTECTED]: -- keywords: +patch Added file: http://bugs.python.org/file12325/getopt.py.diff ___ Python tracker [EMAIL PROTECTED] http://bugs.python.org/issue4629 ___

<    1   2   3   4