Re: [Python-Dev] [Python-checkins] devguide: Add instructions for handling merge conflicts during null merges.

2012-11-21 Thread Chris Jerdonek
On Wed, Nov 21, 2012 at 6:07 PM, chris.jerdonek wrote: > http://hg.python.org/devguide/rev/78a69b929ab7 > changeset: 573:78a69b929ab7 > user:Chris Jerdonek > date:Wed Nov 21 18:04:35 2012 -0800 > summary: > Add instructions for handling merge conflicts during null merges. Thi

Re: [Python-Dev] [Python-checkins] cpython (3.3): - Issue #16514: Fix regression causing a traceback when sys.path[0] is None

2012-11-21 Thread Brett Cannon
On Tue, Nov 20, 2012 at 6:41 PM, Barry Warsaw wrote: > On Nov 20, 2012, at 05:35 PM, Terry Reedy wrote: > > >On 11/20/2012 3:35 PM, barry.warsaw wrote: > > > >> for entry in path: > >> +if not isinstance(entry, (str, bytes)): > >> +continue > > > >Given that

Re: [Python-Dev] operator.attrgetter(attr[, args...]) etc.

2012-11-21 Thread R. David Murray
On Wed, 21 Nov 2012 14:49:05 +, Oscar Benjamin wrote: > On 21 November 2012 03:57, Leo wrote: > > Sorry the python issue tracker seems broken (I cannot log in). So I am > > posting it here. > > > > In the doc: > > > > operator.attrgetter(attr[, args...]) > > operator.itemgetter(item[, ar

Re: [Python-Dev] operator.attrgetter(attr[, args...]) etc.

2012-11-21 Thread Oscar Benjamin
On 21 November 2012 03:57, Leo wrote: > Sorry the python issue tracker seems broken (I cannot log in). So I am > posting it here. > > In the doc: > > operator.attrgetter(attr[, args...]) > operator.itemgetter(item[, args...]) > operator.methodcaller(name[, args...]) > > The signatures of the