[issue2636] Regexp 2.7 (modifications to current re 2.2.2)

2010-04-12 Thread Matthew Barnett
Matthew Barnett added the comment: issue2636-20100413.zip is a new version of the regex module. It includes additional speed-ups. -- Added file: http://bugs.python.org/file16905/issue2636-20100413.zip ___ Python tracker

[issue7306] Patch - skip winsound tests if no default sound is configured

2010-04-12 Thread Brian Curtin
Brian Curtin added the comment: Committed in r80026-r80029. -- assignee: -> brian.curtin resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed ___ Python tracker __

[issue8382] StringIO.write() takes any argument and converts it to a string

2010-04-12 Thread Skip Montanaro
Skip Montanaro added the comment: It's clear you can't change it for 2.6 or 2.7, almost certainly not 3.1. Maybe you could change it for 3.2. -- nosy: +skip.montanaro ___ Python tracker

[issue8382] StringIO.write() takes any argument and converts it to a string

2010-04-12 Thread Skip Montanaro
Skip Montanaro added the comment: Whoops. No stringio.py in 3.x. This should be closed as won't fix since it's not a problem in py3k and can't be changed in 2.x. -- ___ Python tracker ___

[issue4487] Add utf8 alias for email charsets

2010-04-12 Thread Shashwat Anand
Shashwat Anand added the comment: MIMEText doesn't support unicode input. This was the reason OP Test case failed. For reference : http://bugs.python.org/issue1368247 -- ___ Python tracker ___

[issue1368247] unicode in email.MIMEText and email/Charset.py

2010-04-12 Thread Shashwat Anand
Shashwat Anand added the comment: After applying maxua's patch we do not get the unicode error but as david stated the support is not there. Here is the test. >>> import email >>> msg = >>> email.MIMEText.MIMEText(u'\u043a\u0438\u0440\u0438\u043b\u0438\u0446\u0430') >>> msg.set_charset('utf8'

[issue6521] Contradictory documentation for email.mime.text.MIMEText

2010-04-12 Thread Shashwat Anand
Shashwat Anand added the comment: UnicodeEncodeError: 'ascii' codec can't encode characters in position 0-7: ordinal not in range(128) The lack of unicode encoding support should be mentioned explicitly. Attaching a doc patch. -- keywords: +patch nosy: +l0nwlf, r.david.murray Added fi

[issue3143] Make the left sidebar in the doc collapsible

2010-04-12 Thread Ezio Melotti
Ezio Melotti added the comment: Even if I tested it only with Python documentation, the script should work for other docs generated by Sphinx (at least with the default theme). Last time I tried the script it wasn't working on Chrome, so there's still some work to do. If you want to try it and

[issue7585] difflib should separate filename from timestamp with tab

2010-04-12 Thread anatoly techtonik
anatoly techtonik added the comment: r80004 and r80006 to be exact. Great! Thanks! =) -- ___ Python tracker ___ ___ Python-bugs-list

[issue4022] 2.6 dependent on c:\python26\ on windows

2010-04-12 Thread anatoly techtonik
anatoly techtonik added the comment: I it still actual for 2.6.5 and 2.7? -- components: +Installation versions: +Python 2.7 ___ Python tracker ___ __

[issue7509] AttributeError: MSVCCompiler instance has no attribute '_MSVCCompiler__root'

2010-04-12 Thread Christopher Paolini
Christopher Paolini added the comment: actually this isn't a duplicate. This is for version 2.6, that issue you said it was a duplicate of is for Python 2.5. -- nosy: +Christopher.Paolini ___ Python tracker __

[issue7509] AttributeError: MSVCCompiler instance has no attribute '_MSVCCompiler__root'

2010-04-12 Thread Amaury Forgeot d'Arc
Amaury Forgeot d'Arc added the comment: "This is for version 2.6". But how? the traceback shows C:\Python25 on almost every line. -- nosy: +amaury.forgeotdarc ___ Python tracker ___

[issue8366] OS X universal builds fail on 2.7b1 and py3k with "Don't know machine value for archs"

2010-04-12 Thread Ronald Oussoren
Ronald Oussoren added the comment: Setting CPPFLAGS is needed to ensure that the configure tests use the correct header files, as Ned noted. I agree that this should be cleaned up, I also agree with MAL's comment in Issue8211: the entire machinery for setting up the compiler in Python's conf

[issue2698] Extension module build fails for MinGW: missing vcvarsall.bat

2010-04-12 Thread Christopher Paolini
Christopher Paolini added the comment: There is an issue with Visual Studio 2008 and the latest 2.6.5 It searches using productdir = Reg.get_value(r"%s\Setup\VC" % vsbase, "productdir") I just fresh installed Visual Studios and there is no registry "setup" fo

[issue7509] AttributeError: MSVCCompiler instance has no attribute '_MSVCCompiler__root'

2010-04-12 Thread Tarek Ziadé
Tarek Ziadé added the comment: I don't know about 2.5 but: Reading the MSVCCompiler class code in trunk, I can see a case where __init__ doesn't create self.__root. (if self.__arch != Intel) making any call to get_msvc_paths() leading to an error. You certainly have some kind of unexpected en

<    1   2