Michael
Michael
I think I'd merge a PR that makes it configurable.
I had this problem myself but never came around to fixing it. A pull request would be welcome.
Is it possible this is already supported? What happens if you don't have a %(group)s in your layout? See https://github.com/miracle2k/android2po/blob/master/example.config#L33
Try this: ``` --layout %(locale)s.po ``` Note the `s` at the end of the variable. My hope is that the lack of `%(group)s` will mean the different xml resource are...
There might be a bug here. Part of the problem seems to be that Android behaves strangely here: http://stackoverflow.com/questions/4414389/android-xml-percent-symbol That is, if you want to use formatting on your string,...
Probably the same issue as #8.
Heads-Up: I won't have the time to add this anytime soon, but I'll be happy to accept patches.
Is there a list of features that are still missing from grpclib?
> My current understanding is that unless you're using @contextmanager or @asynccontextmanager, it is always wrong to put a yield inside a nursery block or cancel scope block. Using aclosing...
So the case I find my self struggling with is this: ```python import trio from async_generator import aclosing async def fail_soon(): raise ValueError() async def subscribe(): async with trio.open_nursery() as...