[issue13641] decoding functions in the base64 module could accept unicode strings

2011-12-27 Thread Petri Lehtinen
Changes by Petri Lehtinen : -- nosy: +petri.lehtinen ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mai

[issue12857] Expose called function on frame object

2011-12-27 Thread Eric Snow
Eric Snow added the comment: My response to a similar query: What it enables is the ability to introspect the *actual* function object belonging to the currently executing code, whether in the same execution frame or in a later one on the stack. We don't have that now. The best we can do is

[issue13346] re.split() should behave like string.split() for maxsplit=0 and maxsplit=-1

2011-12-27 Thread Raymond Hettinger
Raymond Hettinger added the comment: I concur with closing this one. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsu

[issue12857] Expose called function on frame object

2011-12-27 Thread Benjamin Peterson
Benjamin Peterson added the comment: What would you use the functionality provided by this patch for? -- nosy: +benjamin.peterson ___ Python tracker ___

[issue13659] Add a help() viewer for IDLE's Shell.

2011-12-27 Thread Roger Serwy
Roger Serwy added the comment: If you're on Linux, run this as your first command in IDLE: import pydoc; pydoc.pager = lambda text: pydoc.tempfilepager(pydoc.plain(text), 'xterm -e less') If Windows: import pydoc; pydoc.pager = lambda text: pydoc.tempfilepager(pydoc.plain(text), 'n

[issue13241] llvm-gcc-4.2 miscompiles Python (XCode 4.1 on Mac OS 10.7)

2011-12-27 Thread Nam Nguyen
Nam Nguyen added the comment: Here's a minimal test case for #define bug in LLVM GCC. If the base struct is 8-byte long or smaller, the code runs correctly. gcc version 4.2.1 (Based on Apple Inc. build 5658) (LLVM build 2336.1.00) #include #include typedef struct { int padding

[issue11638] python setup.py sdist --formats tar* crashes if version is unicode

2011-12-27 Thread Jason R. Coombs
Jason R. Coombs added the comment: > That's a shame. I tested it in advance. I'll correct or revert tonight or > tomorrow. -- title: python setup.py sdist --formats tar* crashes if version is unicode -> python setup.py sdist --formats tar* crashes if versionis unicode Added file:

[issue13465] A Jython section in the dev guide would be great

2011-12-27 Thread Frank Wierzbicki
Changes by Frank Wierzbicki : -- status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://

[issue13465] A Jython section in the dev guide would be great

2011-12-27 Thread Frank Wierzbicki
Frank Wierzbicki added the comment: I have forked the devguide into http://hg.python.org/jython-docs/devguide/ -- this way I can merge changes from the main devguide as they make sense. DVCS FTW :) -- I guess this issue can be closed. -- ___ Python

[issue12857] Expose called function on frame object

2011-12-27 Thread Meador Inge
Changes by Meador Inge : -- nosy: +meador.inge ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyth

[issue1953] Compact int and float freelists

2011-12-27 Thread Antoine Pitrou
Antoine Pitrou added the comment: I don't know what the purpose of this feature is nor who the target users are. Trying to micro-manage the interpreter's resource allocation from Python code is certainly a losing battle, and does not warrant relying on implementation-specific APIs. Moreover,

[issue11638] python setup.py sdist --formats tar* crashes if version is unicode

2011-12-27 Thread Benjamin Peterson
Benjamin Peterson added the comment: f0fcb82a88e9 broke bots. See http://www.python.org/dev/buildbot/all/builders/x86%20Gentoo%203.x/builds/1374/steps/test/logs/stdio -- nosy: +benjamin.peterson ___ Python tracker

[issue13663] pootle.python.org is outdated.

2011-12-27 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- nosy: +georg.brandl, loewis ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http

[issue9922] subprocess.getstatusoutput can fail with utf8 UnicodeDecodeError

2011-12-27 Thread Chris Rebert
Changes by Chris Rebert : -- nosy: +cvrebert ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.

[issue12760] Add create mode to open()

2011-12-27 Thread Chris Rebert
Changes by Chris Rebert : -- nosy: +cvrebert ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python

[issue12857] Expose called function on frame object

2011-12-27 Thread Chris Rebert
Changes by Chris Rebert : -- nosy: +cvrebert ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python

[issue12760] Add create mode to open()

2011-12-27 Thread Antoine Pitrou
Antoine Pitrou added the comment: > C11 uses 'x' for this, for what it's worth. > > This is not a "duplicate issue". The openat solution is no easier than > the os.open solution. Ok, let's re-open then. I'm not sold on the feature, but the fact C11 adds a dedicated letter mode for it could b