Eric Blake <[email protected]> writes: > On 02/20/2014 09:54 AM, Markus Armbruster wrote: >>> + # When c is upper and no "_" appears before, do more checks >>> + if c.isupper() and (i > 0) and c_fun_str[i - 1] != "_": >> >> c_fun_str[i - 1]... what if i == 0? > > How? We already had '(i > 0) and' prior to the use of i-1.
Blind on both eyes, sorry for the noise %-}
