Re: [python-committers] PyCon Language Summit: Wednesday 9th April

2014-01-06 Thread Victor Stinner
Hi, 2013/12/4 Michael Foord : > As with previous years we will be having a Language Summit at PyCon North > America, in Montreal. The summit will be on Wednesday 9th April and running > from approximately 10am to 4pm. My talk "Track memory leaks in Python" was accepted, I will be present at Mon

Re: [python-committers] PyCon Language Summit: Wednesday 9th April

2014-01-06 Thread Victor Stinner
2014/1/6 Victor Stinner : > You must try to understand why and fix remaining issues. Oops, I don't understand why, but sometimes I write "you" instead of "we". *We* must try to understand why and fix remaining issues. Victor ___ python-committers maili

Re: [python-committers] PyCon Language Summit: Wednesday 9th April

2014-01-06 Thread Antoine Pitrou
On lun., 2014-01-06 at 11:37 +0100, Victor Stinner wrote: > 2014/1/6 Victor Stinner : > > You must try to understand why and fix remaining issues. > > Oops, I don't understand why, but sometimes I write "you" instead of "we". > > *We* must try to understand why and fix remaining issues. Certainl

[python-committers] 3.4.0b2 release commits merged back into trunk, trunk is open for business again EOM

2014-01-06 Thread Larry Hastings
//arry/ ___ python-committers mailing list python-committers@python.org https://mail.python.org/mailman/listinfo/python-committers

[python-committers] Adding a (small) feature to 3.4 for Argument Clinic: inspect.Signature supporting simple named constants for default values

2014-01-06 Thread Larry Hastings
Serhiy Storchaka ran into a ticklish problem with Argument Clinic and inspect.Signature information for builtins. Consider pattern_match() in Modules/_sre.c. This implements the match method on a pattern object; in other words, re.compile().match(). The third parameter, endpos, defaults to

Re: [python-committers] Adding a (small) feature to 3.4 for Argument Clinic: inspect.Signature supporting simple named constants for default values

2014-01-06 Thread M.-A. Lemburg
On 06.01.2014 22:34, Larry Hastings wrote: > > p.s. > > For what it's worth, the documentation for match() dodges this problem by > outright lying. It claims > that the prototype for the function is: > > match(string[, pos[, endpos]]) > > which is a lie. pattern_match() parses its argume

Re: [python-committers] Adding a (small) feature to 3.4 for Argument Clinic: inspect.Signature supporting simple named constants for default values

2014-01-06 Thread Barry Warsaw
FWIW, this would probably be better on python-dev, but maybe you wanted to cut down on potential noise and churn? On Jan 06, 2014, at 01:34 PM, Larry Hastings wrote: >The thing is, I feel like this is borderline between bug fix and new feature. >But without adding this, we would make a lot of the

Re: [python-committers] Adding a (small) feature to 3.4 for Argument Clinic: inspect.Signature supporting simple named constants for default values

2014-01-06 Thread Larry Hastings
On 01/06/2014 02:10 PM, M.-A. Lemburg wrote: Looks like a documentation bug to me. Several functions were changed to be keyword aware some years ago and the docs you quoted still list the old positional format. Your intuition was spot on. Revision 0a97f5dde3a7, by the effbot, Tue Oct 03 200

Re: [python-committers] PyCon Language Summit: Wednesday 9th April

2014-01-06 Thread Michael Foord
On 6 Jan 2014, at 10:35, Victor Stinner wrote: > Hi, > > 2013/12/4 Michael Foord : >> As with previous years we will be having a Language Summit at PyCon North >> America, in Montreal. The summit will be on Wednesday 9th April and running >> from approximately 10am to 4pm. > > My talk "Track

Re: [python-committers] Adding a (small) feature to 3.4 for Argument Clinic: inspect.Signature supporting simple named constants for default values

2014-01-06 Thread Ethan Furman
On 01/06/2014 02:21 PM, Barry Warsaw wrote: On Jan 06, 2014, at 01:34 PM, Larry Hastings wrote: The thing is, I feel like this is borderline between bug fix and new feature. But without adding this, we would make a lot of the Argument Clinic conversions pretty messy. So I want to check it in.

Re: [python-committers] Adding a (small) feature to 3.4 for Argument Clinic: inspect.Signature supporting simple named constants for default values

2014-01-06 Thread Nick Coghlan
On 7 Jan 2014 07:34, "Ethan Furman" wrote: > > On 01/06/2014 02:21 PM, Barry Warsaw wrote: >> >> On Jan 06, 2014, at 01:34 PM, Larry Hastings wrote: >> >>> The thing is, I feel like this is borderline between bug fix and new feature. >>> But without adding this, we would make a lot of the Argument

Re: [python-committers] Adding a (small) feature to 3.4 for Argument Clinic: inspect.Signature supporting simple named constants for default values

2014-01-06 Thread Terry Reedy
On 1/6/2014 5:21 PM, Barry Warsaw wrote: FWIW, this would probably be better on python-dev, but maybe you wanted to cut down on potential noise and churn? Better here, I think. On Jan 06, 2014, at 01:34 PM, Larry Hastings wrote: The thing is, I feel like this is borderline between bug fix a