[issue14847] AttributeError: NoneType has no attribute 'utf_8_decode'

2012-05-17 Thread Jason R. Coombs
New submission from Jason R. Coombs : I have run into an issue where an attempt to call .decode('utf-8') on a Python string results in the error with the following traceback: File ... ''.decode('utf-8') File "env/lib/python2.6/encodings/utf_8.py", line 16, in decode return codecs.utf_8_

[issue14845] list() != []

2012-05-17 Thread Peter Norvig
Peter Norvig added the comment: I agree with R. David Murray -- if "correct" means following the PEP 289 semantics, then list(next(F) for _ in range(10)) should be the same as def __gen(exp): for _ in exp: yield next(F) list(__gen(iter(range(10 and indeed that is the case.

[issue14776] Add SystemTap static markers

2012-05-17 Thread Éric Araujo
Éric Araujo added the comment: > We currently have several locations for documentation: Don’t forget the wiki . It is much less curated than the other docs. > Though I don't want to block this feature on writing up a full guide to > debugging I started work on a debugging howto: #12913. Mayb

[issue13175] packaging uses wrong line endings in RECORD files on Windows

2012-05-17 Thread Éric Araujo
Éric Araujo added the comment: I should be able to run a VM to test and commit this soon. Keep faith! -- ___ Python tracker ___ ___

[issue8098] PyImport_ImportModuleNoBlock() may solve problems but causes others.

2012-05-17 Thread Martin Dengler
Changes by Martin Dengler : -- nosy: +mdengler ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pytho

[issue14838] IDLE Will not load on reinstall

2012-05-17 Thread Cain
Cain added the comment: Running Windows 7. I get the following output when running the requested command: File "", line 1 python.exe Lib\idlelib\idle.py SyntaxError: invalid syntax -- ___ Python tracker ___

[issue14818] C implementation of ElementTree: Some functions should support keyword arguments

2012-05-17 Thread Markus
Markus added the comment: Applied the patch, but could not verify 'it works for me' as Element lacks the attrib keyword. -- ___ Python tracker ___ _

[issue14702] os.makedirs breaks under autofs directories

2012-05-17 Thread Charles-François Natali
Charles-François Natali added the comment: Alright, closing for good then. Andrew, if you want to get this fixed, you should report this to the autofs folks, because it's definitely not a Python bug. -- stage: -> committed/rejected status: open -> closed _

<    1   2