Re: [Python-ideas] https://docs.python.org/fr/ ?

2017-01-30 Thread INADA Naoki
There are some updates about this topic. And I have something to discuss to get things forward. We (Japanese translation team) and Julien start sharing one Transifex project. Please see this dashboard. We have nice progress. https://www.transifex.com/python-doc/python-35/dashboard/ Julien want

Re: [Python-ideas] https://docs.python.org/fr/ ?

2017-01-30 Thread Terry Reedy
On 1/30/2017 4:21 AM, INADA Naoki wrote: A followup to Julien Palard's post Mar 2016. We (Japanese translation team) and Julien start sharing one Transifex project. I am in favor of translations AND of making them easy to find. Sharing infrastructure seems sensible. Aside from the base url

Re: [Python-ideas] [docs] https://docs.python.org/fr/ ?

2017-01-30 Thread Berker Peksağ
On Mon, Jan 30, 2017 at 12:21 PM, INADA Naoki wrote: > There are some updates about this topic. > And I have something to discuss to get things forward. > > We (Japanese translation team) and Julien start sharing one Transifex project. > Please see this dashboard. We have nice progress. > https:

Re: [Python-ideas] [docs] https://docs.python.org/fr/ ?

2017-01-30 Thread Brett Cannon
On Mon, 30 Jan 2017 at 07:16 Berker Peksağ wrote: > On Mon, Jan 30, 2017 at 12:21 PM, INADA Naoki > wrote: > > There are some updates about this topic. > > And I have something to discuss to get things forward. > > > > We (Japanese translation team) and Julien start sharing one Transifex > proj

Re: [Python-ideas] A more readable way to nest functions

2017-01-30 Thread Mikhail V
On 27 January 2017 at 22:07, Brent Brinkley wrote: > HI Everyone, > > One issue that I’ve seen in a lot of languages struggle with is nested > function calls. > Parenthesis when nested inherently create readability issues. > > Yes there is such issue. I don't see however that a radical change to

Re: [Python-ideas] A more readable way to nest functions

2017-01-30 Thread David Mertz
On Mon, Jan 30, 2017 at 11:52 AM, Mikhail V wrote: > *Theoretically* I see a solution by 'inlined' statements. > Take a long example: > > print ( merge (a, b, merge ( long_variable2, long_variable2 ) ) > > Now just split it in 2 lines: > > tmp <> merge ( long_variable2, long_variable2 ) >

Re: [Python-ideas] A more readable way to nest functions

2017-01-30 Thread Mikhail V
On 30 January 2017 at 21:25, David Mertz wrote: > On Mon, Jan 30, 2017 at 11:52 AM, Mikhail V wrote: > >> *Theoretically* I see a solution by 'inlined' statements. >> Take a long example: >> >> print ( merge (a, b, merge ( long_variable2, long_variable2 ) ) >> >> Now just split it in 2 lines

[Python-ideas] A decorator to call super()

2017-01-30 Thread Roberto Martínez
Hi, I find this type of code quite often: class MyOverridedClass(MyBaseClass): def mymethod(self, foo, **kwargs): # Do something return super().mymethod(**kwargs) What about creating a decorator to call super() after/before the overrided method? Something like that: class My