[issue16148] Implement PEP 424

2012-10-07 Thread Roundup Robot
Roundup Robot added the comment: New changeset b9dedf845a0f by Armin Ronacher in branch 'default': Issue #16148: Small improvements and cleanup. Added version information http://hg.python.org/cpython/rev/b9dedf845a0f -- ___ Python tracker

[issue16148] Implement PEP 424

2012-10-06 Thread Alex Gaynor
Alex Gaynor added the comment: Ah, thank you very much, sorry about that. -- ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue16148] Implement PEP 424

2012-10-06 Thread Christian Heimes
Christian Heimes added the comment: I've taken care of the issue in f56a49e74178 and 895f9fddb8e3. -- nosy: +christian.heimes resolution: -> fixed stage: -> committed/rejected ___ Python tracker _

[issue16148] Implement PEP 424

2012-10-06 Thread Stefan Krah
Stefan Krah added the comment: a7ec0a1b0f7c broke the Windows buildbots: In Visual Studio variables can only be declared at the top of a block. -- nosy: +skrah ___ Python tracker ___

[issue16148] Implement PEP 424

2012-10-06 Thread Armin Ronacher
Changes by Armin Ronacher : -- status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://ma

[issue16148] Implement PEP 424

2012-10-06 Thread Armin Ronacher
Armin Ronacher added the comment: Reviewed and applied. Looks good. -- nosy: +aronacher ___ Python tracker ___ ___ Python-bugs-list m

[issue16148] Implement PEP 424

2012-10-06 Thread Roundup Robot
Roundup Robot added the comment: New changeset a7ec0a1b0f7c by Armin Ronacher in branch 'default': Issue #16148: implemented PEP 424 http://hg.python.org/cpython/rev/a7ec0a1b0f7c -- nosy: +python-dev ___ Python tracker

[issue16148] Implement PEP 424

2012-10-06 Thread Alex Gaynor
Changes by Alex Gaynor : Removed file: http://bugs.python.org/file27450/length_hint.diff ___ Python tracker ___ ___ Python-bugs-list mailing l

[issue16148] Implement PEP 424

2012-10-06 Thread Alex Gaynor
Alex Gaynor added the comment: Added documentation. -- Added file: http://bugs.python.org/file27451/length_hint.diff ___ Python tracker ___ __

[issue16148] Implement PEP 424

2012-10-06 Thread Alex Gaynor
Changes by Alex Gaynor : Removed file: http://bugs.python.org/file27449/length_hint.diff ___ Python tracker ___ ___ Python-bugs-list mailing l

[issue16148] Implement PEP 424

2012-10-06 Thread Alex Gaynor
Alex Gaynor added the comment: All memory leaks resolved, yay! -- Added file: http://bugs.python.org/file27450/length_hint.diff ___ Python tracker ___ ___

[issue16148] Implement PEP 424

2012-10-06 Thread Alex Gaynor
Changes by Alex Gaynor : Removed file: http://bugs.python.org/file27448/length_hint.diff ___ Python tracker ___ ___ Python-bugs-list mailing l

[issue16148] Implement PEP 424

2012-10-06 Thread Alex Gaynor
Alex Gaynor added the comment: Updated version of the patch with fewer memory leaks. -- Added file: http://bugs.python.org/file27449/length_hint.diff ___ Python tracker ___ _

[issue16148] Implement PEP 424

2012-10-06 Thread Alex Gaynor
Changes by Alex Gaynor : Removed file: http://bugs.python.org/file27447/length_hint.diff ___ Python tracker ___ ___ Python-bugs-list mailing l

[issue16148] Implement PEP 424

2012-10-06 Thread Alex Gaynor
Alex Gaynor added the comment: patch updated fully with respect to the updates georg pushed to the PEP -- Added file: http://bugs.python.org/file27448/length_hint.diff ___ Python tracker ___

[issue16148] Implement PEP 424

2012-10-06 Thread Alex Gaynor
New submission from Alex Gaynor: The attached patch implements PEP 424. The implementation of this demonstrated a need for a few small modifications to the PEP, they will follow shortly. -- components: Interpreter Core files: length_hint.diff keywords: patch messages: 172176 nosy: alex