This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Implement PEP 424
Type: enhancement Stage: resolved
Components: Interpreter Core Versions: Python 3.4
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: alex, aronacher, christian.heimes, python-dev, skrah
Priority: normal Keywords: patch

Created on 2012-10-06 10:46 by alex, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
length_hint.diff alex, 2012-10-06 11:54 review
Messages (11)
msg172176 - (view) Author: Alex Gaynor (alex) * (Python committer) Date: 2012-10-06 10:46
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.
msg172183 - (view) Author: Alex Gaynor (alex) * (Python committer) Date: 2012-10-06 11:20
patch updated fully with respect to the updates georg pushed to the PEP
msg172184 - (view) Author: Alex Gaynor (alex) * (Python committer) Date: 2012-10-06 11:32
Updated version of the patch with fewer memory leaks.
msg172185 - (view) Author: Alex Gaynor (alex) * (Python committer) Date: 2012-10-06 11:35
All memory leaks resolved, yay!
msg172188 - (view) Author: Alex Gaynor (alex) * (Python committer) Date: 2012-10-06 11:54
Added documentation.
msg172189 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2012-10-06 12:12
New changeset a7ec0a1b0f7c by Armin Ronacher in branch 'default':
Issue #16148: implemented PEP 424
http://hg.python.org/cpython/rev/a7ec0a1b0f7c
msg172190 - (view) Author: Armin Ronacher (aronacher) * (Python committer) Date: 2012-10-06 12:13
Reviewed and applied.  Looks good.
msg172203 - (view) Author: Stefan Krah (skrah) * (Python committer) Date: 2012-10-06 14:50
a7ec0a1b0f7c broke the Windows buildbots: In Visual Studio variables
can only be declared at the top of a block.
msg172208 - (view) Author: Christian Heimes (christian.heimes) * (Python committer) Date: 2012-10-06 15:18
I've taken care of the issue in f56a49e74178 and 895f9fddb8e3.
msg172239 - (view) Author: Alex Gaynor (alex) * (Python committer) Date: 2012-10-06 19:54
Ah, thank you very much, sorry about that.
msg172281 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2012-10-07 08:29
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
History
Date User Action Args
2022-04-11 14:57:36adminsetgithub: 60352
2012-10-07 08:29:40python-devsetmessages: + msg172281
2012-10-06 19:54:37alexsetmessages: + msg172239
2012-10-06 15:18:47christian.heimessetnosy: + christian.heimes
messages: + msg172208

resolution: fixed
stage: resolved
2012-10-06 14:50:32skrahsetnosy: + skrah
messages: + msg172203
2012-10-06 12:14:02aronachersetstatus: open -> closed
2012-10-06 12:13:14aronachersetnosy: + aronacher
messages: + msg172190
2012-10-06 12:12:36python-devsetnosy: + python-dev
messages: + msg172189
2012-10-06 11:54:46alexsetfiles: - length_hint.diff
2012-10-06 11:54:37alexsetfiles: + length_hint.diff

messages: + msg172188
2012-10-06 11:35:18alexsetfiles: - length_hint.diff
2012-10-06 11:35:11alexsetfiles: + length_hint.diff

messages: + msg172185
2012-10-06 11:33:04alexsetfiles: - length_hint.diff
2012-10-06 11:32:55alexsetfiles: + length_hint.diff

messages: + msg172184
2012-10-06 11:21:23alexsetfiles: - length_hint.diff
2012-10-06 11:20:56alexsetfiles: + length_hint.diff

messages: + msg172183
2012-10-06 10:46:13alexcreate