On 2015-07-13 15:21, Tomas Babej wrote:
> 
> 
> On 07/13/2015 02:59 PM, Rob Crittenden wrote:
>> Christian Heimes wrote:
>>> The patch replaces implicit tuple unpacking from except clauses with
>>> explicit unpacking of the exception objects' args attribute.
>>>
>>> Example:
>>>
>>>>>> e = RuntimeError('num', 'messages')
>>>>>> num, message = e
>>>>>> num, message
>>> ('num', 'messages')
>>>>>> e.args
>>> ('num', 'messages')
>>>>>> num, message = e.args
>>>>>> num, message
>>> ('num', 'messages')
>>>
>>
>> Not related to this patch directly but I think it would be a good idea
>> to create a Python 3 tracking ticket to make it easy to find python
>> 3-specific changes.
>>
>> Then create tickets to fix particular issues and link those with the
>> tracking ticket.
>>
>> rob
>>
> 
> ACK
> 
> Otherwise, I agree with Rob. Can you create an umbrella ticket?
> 
> I will push&mark the commit there.

Sure, I'll create a meta ticket for Python 3 and a sub ticket for each task.

Christian


Attachment: signature.asc
Description: OpenPGP digital signature

-- 
Manage your subscription for the Freeipa-devel mailing list:
https://www.redhat.com/mailman/listinfo/freeipa-devel
Contribute to FreeIPA: http://www.freeipa.org/page/Contribute/Code

Reply via email to