cpython: 1435d2fe8e34 (original) (raw)

Mercurial > cpython

changeset 88721:1435d2fe8e34

Issue #20390: Final fix, for generating NoPositional/NoKeyword for __init__ calls. [#20390]

Larry Hastings larry@hastings.org
date Sat, 25 Jan 2014 22:01:12 -0800
parents fb7cee081e31
children 0ae768637a07
files Misc/NEWS Modules/clinic/_bz2module.c.h Tools/clinic/clinic.py
diffstat 3 files changed, 23 insertions(+), 10 deletions(-)[+] [-] Misc/NEWS 2 Modules/clinic/_bz2module.c.h 11 Tools/clinic/clinic.py 20

line wrap: on

line diff

--- a/Misc/NEWS +++ b/Misc/NEWS @@ -133,7 +133,7 @@ Library IDLE ---- ---Issue #17390: Add Python version to Idle editor window title bar. +- Issue #17390: Add Python version to Idle editor window title bar. Original patches by Edmond Burnett and Kent Johnson.

--- a/Modules/clinic/_bz2module.c.h +++ b/Modules/clinic/_bz2module.c.h @@ -75,7 +75,8 @@ static int int return_value = -1; int compresslevel = 9;

@@ -137,13 +138,15 @@ static int { int return_value = -1;

--- a/Tools/clinic/clinic.py +++ b/Tools/clinic/clinic.py @@ -2593,11 +2593,21 @@ class self_converter(CConverter): def set_template_dict(self, template_dict): template_dict['self_name'] = self.name template_dict['self_type'] = self.parser_type

+

+