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.

Author serhiy.storchaka
Recipients Arfrever, benjamin.peterson, ezio.melotti, georg.brandl, larry, loewis, mrabarnett, pitrou, serhiy.storchaka, taleinat, terry.reedy
Date 2014-03-03.21:20:55
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <3377150.X4OPjylMgk@raxxla>
In-reply-to <1393835958.06.0.727994834943.issue20283@psf.upfronthosting.co.za>
Content
The disadvantage of sre_deprecate_pattern_keyword-3.4.patch is that it creates 
false signature for SRE_Pattern.match(). Default value of first argument is 
exposed as None, but actually this parameter is mandatory and None is not 
valid value for it. I afraid the only way to get rid of false signature (and 
keep backward compatibility) is to revert converting to Argument Clinic.  And 
here is a patch which do this.
Files
File name Uploaded
sre_deprecate_pattern_keyword-3.4_2.patch serhiy.storchaka, 2014-03-03.21:20:54
History
Date User Action Args
2014-03-03 21:20:56serhiy.storchakasetrecipients: + serhiy.storchaka, loewis, georg.brandl, terry.reedy, pitrou, taleinat, larry, benjamin.peterson, ezio.melotti, mrabarnett, Arfrever
2014-03-03 21:20:56serhiy.storchakalinkissue20283 messages
2014-03-03 21:20:55serhiy.storchakacreate